altair-graphql-core
Version:
Several of the core logic for altair graphql client
14 lines • 451 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PluginSource = void 0;
/**
* Defines the repository of the plugin.
* Used to know where to get the plugin from.
*/
var PluginSource;
(function (PluginSource) {
PluginSource["NPM"] = "npm";
PluginSource["GITHUB"] = "github";
PluginSource["URL"] = "url";
})(PluginSource || (exports.PluginSource = PluginSource = {}));
//# sourceMappingURL=source.js.map