UNPKG

@glimmer/interfaces

Version:

Common interfaces shared among all @glimmer/\* projects

5 lines (3 loc) 145 B
import type { Optional } from './core.js'; export type PresentArray<T> = [T, ...T[]]; export type OptionalArray<T> = Optional<PresentArray<T>>;