persona-community-5/.pnpm-store/v3/files/f5/9556d6c84515aaf4e4155b48bee0b36fdc81e50fd82220c77e03caafcf025acf466b121842b5a10a0c024149fafe27a7607c2e32ba9c9ebfbaf4e7ab4da165
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

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>;