diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2020-02-18 14:57:24 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2020-02-19 11:42:52 +0100 |
| commit | 1488805f471d0315ff185306a7d15b5f57e640dc (patch) | |
| tree | 24e1d04b5241f8fb7c8fcd59ae895f115c2ce54d | |
| parent | a6251cb8a683ef4c5c4246f69933425db4808b56 (diff) | |
| download | mullvadvpn-1488805f471d0315ff185306a7d15b5f57e640dc.tar.xz mullvadvpn-1488805f471d0315ff185306a7d15b5f57e640dc.zip | |
Fix linter problems caused by @typescript-eslint/no-empty-interface
| -rw-r--r-- | gui/types/validated/index.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/types/validated/index.d.ts b/gui/types/validated/index.d.ts index 5fb1da1241..7d1cf892e8 100644 --- a/gui/types/validated/index.d.ts +++ b/gui/types/validated/index.d.ts @@ -4,7 +4,7 @@ // TypeScript Version: 3.3.3 declare module 'validated/schema' { - export interface Context {} + type Context = {}; export interface ValidateResult<T> { context: Context; value: T; |
