mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-16 14:06:49 +01:00
2 lines
69 B
TypeScript
2 lines
69 B
TypeScript
export type AtLeast<T, K extends keyof T> = Partial<T> & Pick<T, K>;
|