nitro-renderer/src/api/utils/Dict.ts

4 lines
49 B
TypeScript

export type Dict<T> = {
[key: string]: T;
};