eslink-ui-plus
Version:
vue3 component library, css framework
12 lines (11 loc) • 466 B
TypeScript
import { Ref } from 'vue';
import type { keyConfigType } from './commonProps';
export declare const useConfigKey: (propConfigKey: keyConfigType) => any;
declare type useRefValueFnType = <T>(initValue: T) => [Ref<T>, (v: T) => void, () => T];
export declare const useRefValue: useRefValueFnType;
export declare const useTogglePanle: (containerRef: any) => {
panelShow: Ref<boolean>;
closePanel: () => void;
openPanel: () => void;
};
export {};