UNPKG

145 BTypeScriptView Raw
1import type { Optional } from './core.js';
2
3export type PresentArray<T> = [T, ...T[]];
4export type OptionalArray<T> = Optional<PresentArray<T>>;