UNPKG

@scalar/api-client

Version:

the open source API testing client

17 lines 406 B
import { type InjectionKey } from 'vue'; /** * The layout of the client * * @default 'desktop' */ export type ClientLayout = 'modal' | 'web' | 'desktop'; export declare const LAYOUT_SYMBOL: InjectionKey<ClientLayout>; /** * Get the current client layout * * @see {@link createApiClient} */ export declare const useLayout: () => { layout: ClientLayout; }; //# sourceMappingURL=useLayout.d.ts.map