@flopflip/cypress-plugin
Version:
A plugin for Cypress change feature toggles in Cypress runs
14 lines (13 loc) • 471 B
text/typescript
import { TAdapterIdentifiers } from "@flopflip/types";
//#region src/plugin.d.ts
type TCypressPluginAddCommandOptions = {
adapterId: TAdapterIdentifiers;
};
declare const addCommands: (options: TCypressPluginAddCommandOptions) => void;
declare const install: (_on: any) => void;
//#endregion
//#region src/index.d.ts
declare const version = "__@FLOPFLIP/VERSION_OF_RELEASE__";
//#endregion
export { addCommands, install, version };
//# sourceMappingURL=index.d.cts.map