| 4 | type ValueOf<T> = T[keyof T] |
| 5 | |
| 6 | export interface AlignValue { |
| 7 | Left: 'left' |
| 8 | Center: 'center' |
| 9 | Right: 'right' |
| 10 | Justify: 'justify' |
| 11 | } |
| 12 | |
| 13 | export type AlignKeys = ValueOf<typeof AlignValue> |
| 14 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…