Files
2026-07-13 12:49:58 +08:00

5 lines
63 B
TypeScript

export interface KeyValuePair {
key: string;
value: any;
}