Rewrite options page with Svelte

This commit is contained in:
hensm
2022-06-02 20:16:01 +01:00
committed by Matt Hensman
parent c2f00a2412
commit 63f9af30ae
15 changed files with 1741 additions and 1094 deletions

1
ext/src/global.d.ts vendored
View File

@@ -5,6 +5,7 @@ declare const BRIDGE_NAME: string;
declare const MIRRORING_APP_ID: string;
declare type Nullable<T> = T | null;
declare type Optional<T> = T | undefined;
declare type DistributiveOmit<T, K extends keyof any> = T extends any
? Omit<T, K>