toolbox/toolbox-web/src/models.ts
2020-07-20 21:51:24 -04:00

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
}