UNPKG

element-vir

Version:

Heroic. Reactive. Declarative. Type safe. Web components without compromise.

7 lines (6 loc) 129 B
/** * Blocks empty string literal types. * * @category Internal */ export type NonEmptyString<T> = T extends '' ? never : T;