Skip to content

Commit

Permalink
Flamegraph: Remove unused types (#74918)
Browse files Browse the repository at this point in the history
  • Loading branch information
aocenas authored Sep 14, 2023
1 parent a046c04 commit 1c61427
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions packages/grafana-flamegraph/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down

0 comments on commit 1c61427

Please sign in to comment.