You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gristlabs_grist-core/app/plugin/StorageAPI-ti.ts

16 lines
497 B

import * as t from "ts-interface-checker";
// tslint:disable:object-literal-key-quotes
export const Storage = t.iface([], {
"getItem": t.func("any", t.param("key", "string")),
"hasItem": t.func("boolean", t.param("key", "string")),
"setItem": t.func("void", t.param("key", "string"), t.param("value", "any")),
"removeItem": t.func("void", t.param("key", "string")),
"clear": t.func("void"),
});
const exportedTypeSuite: t.ITypeSuite = {
Storage,
};
export default exportedTypeSuite;