refactor(react/settings): use better option mechanism

This commit is contained in:
Elian Doran
2025-08-14 23:54:32 +03:00
parent cce3d3bce8
commit da92255dd6
5 changed files with 15 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
import server from "./server.js";
import { isShare } from "./utils.js";
type OptionValue = number | string;
export type OptionValue = number | string;
class Options {
initializedPromise: Promise<void>;