@scalar/api-client
Version:
the open source API testing client
28 lines • 1.69 kB
TypeScript
import type { WorkspaceEventBus } from '@scalar/workspace-store/events';
import type { AuthMeta } from '@scalar/workspace-store/mutators';
import type { XScalarEnvironment } from '@scalar/workspace-store/schemas/extensions/document/x-scalar-environments';
import type { ComponentsObject, ServerObject } from '@scalar/workspace-store/schemas/v3.1/strict/openapi-document';
import type { SecuritySchemeOption } from '../../../../v2/blocks/scalar-auth-selector-block/helpers/security-scheme.js';
type __VLS_Props = {
/** The current environment configuration */
environment: XScalarEnvironment;
/** Controls border display for static (non-collapsible) layouts */
isStatic: boolean;
/** Available authentication scheme options */
selectedSchemeOptions: SecuritySchemeOption[];
/** Index of the currently active authentication tab */
activeAuthIndex: number;
/** OpenAPI security scheme definitions */
securitySchemes: ComponentsObject['securitySchemes'];
/** Current server configuration */
server: ServerObject | undefined;
/** Event bus for authentication updates */
eventBus: WorkspaceEventBus;
/** Metadata for authentication context */
meta: AuthMeta;
};
declare const _default: import("vue").DefineComponent<__VLS_Props, {
activeScheme: import("vue").ComputedRef<SecuritySchemeOption | undefined>;
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;
//# sourceMappingURL=RequestAuthDataTable.vue.d.ts.map