mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-15 12:17:43 +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;
|