UNPKG

vexip-ui

Version:

A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good

11 lines (10 loc) 540 B
import { ExtractPropTypes } from 'vue'; import { ConfigurableProps } from '@vexip-ui/config'; import { FullScreenType } from './symbol'; export declare const fullScreenProps: { inherit: import('vue').PropType<boolean>; tag: import('vue').PropType<string>; onToggle: import('vue').PropType<((full: false | FullScreenType) => void) | ((full: false | FullScreenType) => void)[]>; }; export type FullScreenProps = ExtractPropTypes<typeof fullScreenProps>; export type FullScreenCProps = ConfigurableProps<FullScreenProps, 'model'>;