declare global { namespace Cypress { interface Chainable { /** * Gets the PropertyValue element (value part) within the given selector. * @example * cy.m4lPropertyValue('[class*="M4LPropertyValue-root"]').should('have.text', '123'); */ m4lPropertyValue( /** * Property selector */ selector: string, ): Chainable } } } export {};