UNPKG

@stimulus-library/mixins

Version:

A library of useful controllers for Stimulus

9 lines (8 loc) 286 B
import { Controller } from "@hotwired/stimulus"; export declare function useFullscreen(controller: Controller, el?: Element): { isFullscreen: () => boolean; enter: () => Promise<void>; exit: () => Promise<void>; toggle: () => Promise<void>; teardown: () => void; };