export interface Async3Definition { asyncapi: string; servers?: Record; info: Async3Info; channels?: Record; components?: Record; operations?: Record; defaultContentType?: string; } export interface Async3Info { title: string; version: string; description?: string; termsOfService?: string; contact?: Async3Contact; license?: Async3License; tags?: Tag[]; externalDocs?: ExternalDoc; } export interface Async3Contact { name?: string; url?: string; email?: string; } export interface Async3License { name: string; url?: string; } export interface Tag { name: string; description?: string; externalDocs?: ExternalDoc; } export interface ExternalDoc { url: string; description?: string; } export interface Channel { address?: string | null; messages?: Record; title?: string; summary?: string; description?: string; servers?: Record[]; parameters?: Record; tags?: Record; externalDocs?: ExternalDocumentation; bindings?: Record; } export interface ExternalDocumentation { url: string; description?: string; } //# sourceMappingURL=asyncapi3.d.ts.map