ahooks-v2
Version:
react hooks library
12 lines (11 loc) • 363 B
TypeScript
import { BasicTarget } from '../utils/dom';
export interface Options {
onExitFull?: () => void;
onFull?: () => void;
}
declare const _default: (target: BasicTarget, options?: Options | undefined) => readonly [boolean, {
readonly setFull: () => void;
readonly exitFull: () => void;
readonly toggleFull: () => void;
}];
export default _default;