redoc/src/types/index.ts

4 lines
100 B
TypeScript
Raw Normal View History

2017-10-12 00:01:37 +03:00
export * from './open-api';
export type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;