Flamegraph: Remove unused types (#74918)

This commit is contained in:
Andrej Ocenas 2023-09-14 16:26:59 +02:00 committed by GitHub
parent a046c043d7
commit 1c61427f57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,12 +14,6 @@ export enum SampleUnit {
Nanoseconds = 'ns',
}
export enum ColumnTypes {
Symbol = 'Symbol',
Self = 'Self',
Total = 'Total',
}
export enum SelectedView {
TopTable = 'topTable',
FlameGraph = 'flameGraph',
@ -33,17 +27,6 @@ export interface TableData {
totalRight: number;
}
export interface TopTableData {
symbol: string;
self: TopTableValue;
total: TopTableValue;
}
export type TopTableValue = {
value: number;
unitValue: string;
};
export enum ColorScheme {
ValueBased = 'valueBased',
PackageBased = 'packageBased',