@opencloud-eu/design-system
Version:
OpenCloud Design System is used to design OpenCloud UI components
31 lines (30 loc) • 743 B
TypeScript
import { Instance } from 'tippy.js';
export declare const hideOnEsc: {
name: string;
defaultValue: boolean;
fn({ hide }: Instance): {
onShow: () => void;
onHide: () => void;
};
};
export declare const customProps: {
name: string;
defaultValue: boolean;
fn(instance: Instance): {
onCreate(): void;
};
};
export declare const destroy: (_tippy: Instance) => void;
declare const _default: {
name: string;
beforeMount: (el: HTMLElement & {
tooltip: any;
}, { value }: any) => void;
updated: (el: HTMLElement & {
tooltip: any;
}, { value }: any) => void;
unmounted: (el: HTMLElement & {
tooltip: any;
}) => void;
};
export default _default;