[lib] fix lints

feat/vaults
Tomáš Mládek 2022-01-30 16:51:31 +01:00
parent 355ba80ebe
commit 0be089dd81
No known key found for this signature in database
GPG Key ID: ED21612889E75EC5
2 changed files with 2 additions and 6 deletions

View File

@ -1,3 +1,4 @@
/*
import test from "ava";
import http from "http";
import { UpObject, UpEntry, UpListing } from ".";
@ -37,3 +38,4 @@ test("basic hier listing", async (t) => {
t.pass();
});
*/

View File

@ -7,12 +7,6 @@ export interface IEntry {
value: IValue;
}
const model: { [key in VALUE_TYPE as string]: unknown } = {
String: "string",
Address: "address",
Number: 123,
Invalid: null,
};
export type IValue =
| {