@scalar/api-client
Version:
the open source API testing client
27 lines • 1.11 kB
TypeScript
import type { HttpMethod as HttpMethodType } from '@scalar/helpers/http/http-methods';
export type History = {
method: HttpMethodType;
path: string;
duration: number;
status: number;
};
type __VLS_Props = {
/** The id of the target to use for the popover (e.g. address bar) */
target: string;
/** List of all request history items */
history: History[];
};
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
"update:open": (value: boolean) => any;
"select:history:item": (payload: {
index: number;
}) => any;
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
"onUpdate:open"?: ((value: boolean) => any) | undefined;
"onSelect:history:item"?: ((payload: {
index: number;
}) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: typeof __VLS_export;
export default _default;
//# sourceMappingURL=AddressBarHistory.vue.d.ts.map