4 lines
70 B
TypeScript
Executable file
4 lines
70 B
TypeScript
Executable file
type KeyValue = {
|
|
[key: string]: any;
|
|
};
|
|
export default KeyValue;
|