UNPKG

@commercelayer/sdk-utils

Version:
5 lines (3 loc) 151 B
type NonEmptyString<T extends string> = T extends '' ? never : T; type NonEmptyArray<T> = [T, ...T[]]; export type { NonEmptyArray, NonEmptyString };