@redocly/openapi-core
Version:
See https://github.com/Redocly/redocly-cli
18 lines • 414 B
TypeScript
export interface InfoObject {
title: string;
version: string;
}
export interface ActionObject {
target: string;
description?: string;
update?: unknown;
remove?: boolean;
}
export interface Overlay1Definition {
overlay: '1.0.0';
info: InfoObject;
extends?: string;
actions: ActionObject[];
}
export declare const VERSION_PATTERN: RegExp;
//# sourceMappingURL=overlay.d.ts.map