persona-community-5/.pnpm-store/v3/files/69/ee2d855d5d0e602bd0d7e8ccc40da88a5477e96c4a7dc39e47f86780f06f33bb2ea1ba089c3f17d61dc70d43e737cbc3043a16c5a2c444ddc7e4147d122849
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

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