UNPKG

@svta/common-media-library

Version:
9 lines 191 B
/** * A type that represents either a single value or an array of values. * * @group Utils * * @beta */ export type ValueOrArray<T> = T | T[]; //# sourceMappingURL=ValueOrArray.d.ts.map