@redocly/openapi-core
Version:
See https://github.com/Redocly/redocly-cli
9 lines • 397 B
TypeScript
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>;
//# sourceMappingURL=common.d.ts.map