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