2020-07-21 13:20:51 +00:00
|
|
|
/**
|
|
|
|
* This module was automatically generated by `ts-interface-builder`
|
|
|
|
*/
|
|
|
|
import * as t from "ts-interface-checker";
|
|
|
|
// tslint:disable:object-literal-key-quotes
|
|
|
|
|
|
|
|
export const ComponentKind = t.union(t.lit("safeBrowser"), t.lit("safePython"), t.lit("unsafeNode"));
|
|
|
|
|
|
|
|
export const GristAPI = t.iface([], {
|
2022-02-01 19:51:40 +00:00
|
|
|
"render": t.func("number", t.param("path", "string"), t.param("target", "RenderTarget"), t.param("options", "RenderOptions", true)),
|
2020-07-21 13:20:51 +00:00
|
|
|
"dispose": t.func("void", t.param("procId", "number")),
|
|
|
|
"subscribe": t.func("void", t.param("tableId", "string")),
|
|
|
|
"unsubscribe": t.func("void", t.param("tableId", "string")),
|
|
|
|
});
|
|
|
|
|
|
|
|
export const GristDocAPI = t.iface([], {
|
|
|
|
"getDocName": t.func("string"),
|
|
|
|
"listTables": t.func(t.array("string")),
|
|
|
|
"fetchTable": t.func("any", t.param("tableId", "string")),
|
2022-03-15 14:35:15 +00:00
|
|
|
"applyUserActions": t.func("any", t.param("actions", t.array(t.array("any"))), t.param("options", "any", true)),
|
2022-07-19 15:39:49 +00:00
|
|
|
"getAccessToken": t.func("AccessTokenResult", t.param("options", "AccessTokenOptions")),
|
2020-07-21 13:20:51 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export const GristView = t.iface([], {
|
|
|
|
"fetchSelectedTable": t.func("any"),
|
2020-08-13 18:13:16 +00:00
|
|
|
"fetchSelectedRecord": t.func("any", t.param("rowId", "number")),
|
2022-02-01 19:51:40 +00:00
|
|
|
"allowSelectBy": t.func("void"),
|
|
|
|
"setSelectedRows": t.func("void", t.param("rowIds", t.array("number"))),
|
2020-07-21 13:20:51 +00:00
|
|
|
});
|
|
|
|
|
2022-07-19 15:39:49 +00:00
|
|
|
export const AccessTokenOptions = t.iface([], {
|
|
|
|
"readOnly": t.opt("boolean"),
|
|
|
|
});
|
|
|
|
|
|
|
|
export const AccessTokenResult = t.iface([], {
|
|
|
|
"token": "string",
|
|
|
|
"baseUrl": "string",
|
|
|
|
"ttlMsecs": "number",
|
|
|
|
});
|
|
|
|
|
2020-07-21 13:20:51 +00:00
|
|
|
const exportedTypeSuite: t.ITypeSuite = {
|
|
|
|
ComponentKind,
|
|
|
|
GristAPI,
|
|
|
|
GristDocAPI,
|
|
|
|
GristView,
|
2022-07-19 15:39:49 +00:00
|
|
|
AccessTokenOptions,
|
|
|
|
AccessTokenResult,
|
2020-07-21 13:20:51 +00:00
|
|
|
};
|
|
|
|
export default exportedTypeSuite;
|