prettier: Re-format .ts files

This commit is contained in:
hensm
2021-08-31 08:28:23 +01:00
parent d6ca1325dc
commit 41d8edcab4
82 changed files with 2683 additions and 2532 deletions

7
app/src/global.d.ts vendored
View File

@@ -1,6 +1,5 @@
declare type Nullable<T> = T | null;
declare type DistributiveOmit<T, K extends keyof any> =
T extends any
? Omit<T, K>
: never;
declare type DistributiveOmit<T, K extends keyof any> = T extends any
? Omit<T, K>
: never;