mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-05-01 21:24:13 +02:00
3 lines
105 B
TypeScript
3 lines
105 B
TypeScript
export type AtLeast<T, K extends keyof T> = Partial<T> & Pick<T, K>;
|
|
export type OneOrMany<T> = T[] | T;
|