dashboard/shell/types/generic.ts

3 lines
105 B
TypeScript

export type ValueOf<T> = T[keyof T]
export type Enumerable<T extends Object> = T['propertyIsEnumerable']