mirror of
https://github.com/simon987/toolbox.git
synced 2025-04-19 10:16:43 +00:00
12 lines
170 B
TypeScript
12 lines
170 B
TypeScript
export interface Tool {
|
|
icon?: string
|
|
name: string
|
|
}
|
|
|
|
export interface FlameGraphResult {
|
|
key: string
|
|
script_err: string
|
|
fold_err: string
|
|
graph_err: string
|
|
}
|