3 lines
43 B
TypeScript
3 lines
43 B
TypeScript
|
|
export type KV = {
|
||
|
|
[key: string]: any
|
||
|
|
};
|