gristlabs_grist-core/app/plugin/PluginManifest-ti.ts
Jarosław Sadziński 4ca47878ca (core) Adding import from google drive to the home screen
Summary: Importing from google drive from home screen (also for anonymous users)

Test Plan: Browser tests

Reviewers: dsagal, paulfitz

Reviewed By: dsagal

Differential Revision: https://phab.getgrist.com/D2943
2021-08-05 20:46:11 +02:00

62 lines
1.5 KiB
TypeScript

/**
* This module was automatically generated by `ts-interface-builder`
*/
import * as t from "ts-interface-checker";
// tslint:disable:object-literal-key-quotes
export const PublishedPlugin = t.iface(["BarePlugin"], {
"name": "string",
"version": "string",
});
export const BarePlugin = t.iface([], {
"components": t.iface([], {
"safeBrowser": t.opt("string"),
"safePython": t.opt("string"),
"unsafeNode": t.opt("string"),
"deactivate": t.opt(t.iface([], {
"inactivitySec": t.opt("number"),
})),
}),
"contributions": t.iface([], {
"importSources": t.opt(t.array("ImportSource")),
"fileParsers": t.opt(t.array("FileParser")),
"customSections": t.opt(t.array("CustomSection")),
}),
"experimental": t.opt("boolean"),
});
export const ImportSource = t.iface([], {
"label": "string",
"safeHome": t.opt("boolean"),
"importSource": "Implementation",
"importProcessor": t.opt("Implementation"),
});
export const FileParser = t.iface([], {
"fileExtensions": t.array("string"),
"editOptions": t.opt("Implementation"),
"parseFile": "Implementation",
});
export const CustomSection = t.iface([], {
"path": "string",
"name": "string",
});
export const Implementation = t.iface([], {
"component": t.union(t.lit("safeBrowser"), t.lit("safePython"), t.lit("unsafeNode")),
"name": "string",
"path": t.opt("string"),
});
const exportedTypeSuite: t.ITypeSuite = {
PublishedPlugin,
BarePlugin,
ImportSource,
FileParser,
CustomSection,
Implementation,
};
export default exportedTypeSuite;