openapi-metadata
Version:
Auto-Generate OpenAPI specifications from Typescript decorators
18 lines (13 loc) • 522 B
text/typescript
declare class InvalidConfigurationError extends Error {
constructor(message: string);
}
declare class NoExplicitTypeError extends Error {
constructor(typeName: string, propertyKey: string, parameterIndex?: number, argName?: string);
}
declare class ReflectMetadataMissingError extends Error {
constructor();
}
declare class SymbolKeysNotSupportedError extends Error {
constructor();
}
export { InvalidConfigurationError, NoExplicitTypeError, ReflectMetadataMissingError, SymbolKeysNotSupportedError };