mirror of
https://github.com/Redocly/redoc.git
synced 2025-04-17 15:22:04 +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>>;
|