19 lines
374 B
Plaintext
19 lines
374 B
Plaintext
export interface StatsRow {
|
|
metric: string;
|
|
total: number;
|
|
color: 'red' | 'yellow' | 'green' | 'white' | 'magenta' | 'cyan';
|
|
items?: Set<string>;
|
|
}
|
|
|
|
export type StatsName =
|
|
| 'operations'
|
|
| 'refs'
|
|
| 'tags'
|
|
| 'externalDocs'
|
|
| 'pathItems'
|
|
| 'links'
|
|
| 'schemas'
|
|
| 'webhooks'
|
|
| 'parameters';
|
|
export type StatsAccumulator = Record<StatsName, StatsRow>;
|