@interopio/cli
Version:
Interop.io CLI - a command line for creating Interop.io applications
14 lines (13 loc) • 714 B
TypeScript
import { BrowserClientTemplate, BrowserPlatformTemplate } from "./types.js";
export declare const DEFAULT_CONFIG: {};
export declare const TEMPLATES_REPO_URL = "https://github.com/InteropIO/browser-templates/archive/refs/heads/master.zip";
export declare const MANIFEST_URL = "https://raw.githubusercontent.com/InteropIO/browser-templates/master/manifest.json";
export declare const getTemplatesVersionRepoUrl: (version: string) => string;
export declare const TEMP_ZIP_NAME = "temp.zip";
export declare const NPM_ORG_SCOPE = "@interopio";
export declare const PLATFORM_TEMPLATE: {
[key: string]: BrowserPlatformTemplate;
};
export declare const CLIENT_TEMPLATE: {
[key: string]: BrowserClientTemplate;
};