mirror of
https://github.com/Redocly/redoc.git
synced 2025-03-10 21:05:47 +03:00
4 lines
100 B
TypeScript
4 lines
100 B
TypeScript
export * from './open-api';
|
|
|
|
export type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
|