rickvanlieshout.com/src/types/dictionary.ts

6 lines
76 B
TypeScript
Raw Normal View History

interface Dictionary<T> {
[key: string]: T;
}
export default Dictionary;