UNPKG

@technobuddha/library

Version:
8 lines (7 loc) 202 B
/** * A string-like object, which can be a string or an array of strings; * * @group String * @category Build */ export type StringLike = string | null | undefined | (string | null | undefined)[];