/
githubmirror
/
ionic
Обзор
Документация
Войти
/
githubmirror
/
ionic
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
core/src/utils/test/playwright/testExpect.d.ts
21 строка
629 B
Liam DeBeasi
fix(datetime): month grid no longer loops on ios (#25857)
01 сен 2022, 16:52
Не верифицирован
01 сен 2022, 16:52
c938054
Код
Авторство
О чём код?
interface CustomMatchers<R = unknown> { /** * Will check if the event spy received the expected event. */ toHaveReceivedEvent(): R; /** * Will check if the event spy received the expected event with the expected detail. * @param eventDetail The expected detail of the event. */ toHaveReceivedEventDetail(eventDetail: any): R; /** * Will check how many times the event has been received. */ toHaveReceivedEventTimes(count: number): R; } declare namespace PlaywrightTest { // eslint-disable-next-line @typescript-eslint/no-empty-interface interface Matchers<R> extends CustomMatchers<R> {} }