vexip-ui
Version:
A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good
9 lines (8 loc) • 320 B
TypeScript
export type FullScreenType = 'window' | 'browser';
export interface FullScreenSlotParams {
full: false | FullScreenType;
placeId: string;
enter: (type?: FullScreenType, zIndex?: number) => Promise<void>;
exit: () => Promise<void>;
toggle: (type?: FullScreenType, zIndex?: number) => Promise<void>;
}