9 lines
361 B
Plaintext
9 lines
361 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>;
|