interface EndpointV2 {
    headers?: Record<string, string[]>;
    properties?: {
        authSchemes?: AuthScheme[];
    } & Record<string, EndpointObjectProperty>;
    url: URL;
}

Properties

headers?: Record<string, string[]>
properties?: {
    authSchemes?: AuthScheme[];
} & Record<string, EndpointObjectProperty>

Type declaration

  • Optional authSchemes?: AuthScheme[]
url: URL