@nuxt/devtools-ui-kit
Version:
<a href="https://www.npmjs.com/package/@nuxt/devtools-ui-kit"><img src="https://flat.badgen.net/npm/v/@nuxt/devtools-ui-kit" alt="npm version"></a>
29 lines (28 loc) • 994 B
TypeScript
import 'splitpanes/dist/splitpanes.css';
type __VLS_Props = {
/**
* The key to use for storing the pane sizes in localStorage.
*/
storageKey?: string;
stateKey?: string;
leftSize?: number;
minSize?: number;
horizontal?: boolean;
};
declare var __VLS_16: {}, __VLS_24: {};
type __VLS_Slots = {} & {
left?: (props: typeof __VLS_16) => any;
} & {
right?: (props: typeof __VLS_24) => any;
};
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
stateKey: string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};