redoc/src/types/index.ts
2021-06-09 14:57:36 +03:00

4 lines
100 B
TypeScript

export * from './open-api';
export type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;