frontAnswerer/cypress/support/index.d.ts

8 lines
274 B
TypeScript
Raw Normal View History

2025-10-02 00:07:05 +00:00
declare namespace Cypress {
interface Chainable {
loadTranslations(locale?: string): Chainable<any>;
getTranslation(key: string, locale?: string): Chainable<string>;
shouldHaveTranslation(selector: string, key: string, locale?: string): Chainable<void>;
}
}