Files
core_ng/server/util/defs.ts
T
2023-08-05 15:34:26 +00:00

5 lines
86 B
TypeScript

export declare type ValuesOf<T> = T[keyof T];
export type IDItem<T> = {
id: T;
};