web-ext-deploy
Version:
A tool for deploying WebExtensions to multiple stores.
10 lines • 669 B
TypeScript
import { ChromeOptions } from "./stores/chrome/chrome-input.js";
import { EdgeOptionsPublishApi } from "./stores/edge/edge-input.js";
import { FirefoxOptionsSubmissionApi } from "./stores/firefox/firefox-input.js";
import { OperaOptions } from "./stores/opera/opera-input.js";
import { SupportedGetCookies, SupportedStores } from "./types.js";
type StoreObjects = Record<SupportedStores, ChromeOptions | FirefoxOptionsSubmissionApi | EdgeOptionsPublishApi | OperaOptions>;
export declare function getJsonStoresFromCli(): StoreObjects;
export declare function getCookies(siteNames: Array<SupportedGetCookies>): Promise<void>;
export {};
//# sourceMappingURL=cli.d.ts.map