4 lines
No EOL
132 B
TypeScript
4 lines
No EOL
132 B
TypeScript
export type Class = { constructor: { name: string } }
|
|
export type ClassNamed = { name: string }
|
|
|
|
export type ValueOf<T> = T[keyof T] |