/** * Blocks empty string literal types. * * @category Internal */ export type NonEmptyString = T extends '' ? never : T;