mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-11 04:01:34 +00:00
8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
declare const useBinaryState: (initialValue?: boolean) => [
|
|
boolean,
|
|
() => void,
|
|
() => void,
|
|
() => void,
|
|
];
|
|
|
|
export = useBinaryState;
|