UNPKG

shelving

Version:

Toolkit for using data in JavaScript.

9 lines (8 loc) 299 B
import type { NONE } from "../util/constants.js"; import { Store } from "./Store.js"; /** Store a boolean. */ export declare class BooleanStore extends Store<boolean> { constructor(value?: boolean | typeof NONE, time?: number); /** Toggle the current boolean value. */ toggle(): void; }