UNPKG

cypress-bootstrap

Version:

Cypress Bootstrap is a project scaffolding tool that sets up a Cypress automation framework with a standardized folder structure and Page Object Model (POM) design. It helps teams quickly start testing with built-in best practices and sample specs.

16 lines (12 loc) 382 B
declare namespace getSideChannelWeakMap { type Channel<K, V> = { assert: (key: K) => void; has: (key: K) => boolean; get: (key: K) => V | undefined; set: (key: K, value: V) => void; delete: (key: K) => boolean; } } declare function getSideChannelWeakMap<K, V>(): getSideChannelWeakMap.Channel<K, V>; declare const x: false | typeof getSideChannelWeakMap; export = x;