mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
4 lines
63 B
TypeScript
4 lines
63 B
TypeScript
export interface Dictionary<T = any> {
|
|
[key: string]: T;
|
|
}
|