Libraries
    Preparing search index...

    Interface OpenApiServer_ServerLike

    Minimal interface for a @cleverbrush/server server instance. Matches the relevant subset of ServerBuilder so that callers can pass the server directly without importing the class.

    interface OpenApiServer_ServerLike {
        getAuthenticationConfig(): AuthenticationConfig | null;
        getRegistrations(): readonly EndpointRegistration[];
        getWebhooks(): readonly WebhookDefinition[];
    }
    Index

    Methods