5 lines
78 B
TypeScript
5 lines
78 B
TypeScript
|
declare type KeyValue = {
|
||
|
[key: string]: any;
|
||
|
};
|
||
|
export default KeyValue;
|