Interface OpenApiInitOptions

interface OpenApiInitOptions {
    load?: boolean | {
        openApiUrl?: string;
    };
    origin?: string;
}

Properties

Properties

load?: boolean | {
    openApiUrl?: string;
}

true - load the open api config file from the default url default url: openapi.json

Type declaration

  • Optional openApiUrl?: string
origin?: string

The location origin prefix for the open api base urls if the base url is not absolute. defaults to location.origin