Files
ollama-webui2/types/data.ts
2023-10-02 02:04:06 +02:00

5 lines
63 B
TypeScript

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