mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-19 01:57:41 +01: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;
|