UNPKG

@azure-tools/openapi

Version:
14 lines 355 B
export interface PathReference { $ref: string; } export type Refable<T extends {} | undefined> = T | PathReference; export interface Dereferenced<T> { instance: T; name: string; fromRef?: boolean; } export type ExtensionKey = `x-${string}`; export type Extensions = { [key in ExtensionKey]: any; }; //# sourceMappingURL=common.d.ts.map