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

19 lines
574 B

/**
* This module was automatically generated by `ts-interface-builder`
*/
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;