Home Manual Reference Source Test

src/lib/helpers/types.ts

export type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
export type ValueOf<T> = T[keyof T];