@scalar/api-client
Version:
the open source API testing client
30 lines • 1.25 kB
TypeScript
import type { Environment } from '@scalar/oas-utils/entities/environment';
import type { Collection, Server } from '@scalar/oas-utils/entities/spec';
import type { Workspace } from '@scalar/oas-utils/entities/workspace';
import type { EnvVariable } from '../../../../store/active-entities.js';
type __VLS_Props = {
collection: Collection;
environment: Environment;
envVariables: EnvVariable[];
layout: 'client' | 'reference';
persistAuth: boolean;
securitySchemeUids: string[];
server: Server | undefined;
workspace: Workspace;
};
type __VLS_Slots = {
'oauth-actions'?: () => unknown;
};
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
authorized: () => any;
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
onAuthorized?: (() => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};
//# sourceMappingURL=RequestAuthTab.vue.d.ts.map