// Polyfill for TypeScript < 3.5 compatibility
export type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>;
