Files
yaak/plugin-runtime-types/src/helpers.ts
2024-09-22 21:27:10 -07:00

2 lines
69 B
TypeScript

export type AtLeast<T, K extends keyof T> = Partial<T> & Pick<T, K>;