/
githubmirror
/
ionic
Обзор
Документация
Войти
/
githubmirror
/
ionic
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
core/src/components/loading/loading-interface.ts
21 строка
630 B
Liam DeBeasi
chore(deps): update to stencil v3 (#26663)
01 фев 2023, 02:07
Не верифицирован
01 фев 2023, 02:07
1a8bd6d
Код
Авторство
О чём код?
import type { AnimationBuilder, Mode } from '../../interface'; import type { IonicSafeString } from '../../utils/sanitization'; import type { SpinnerTypes } from '../spinner/spinner-configs'; export interface LoadingOptions { spinner?: SpinnerTypes | null; message?: string | IonicSafeString; cssClass?: string | string[]; showBackdrop?: boolean; duration?: number; translucent?: boolean; animated?: boolean; backdropDismiss?: boolean; mode?: Mode; keyboardClose?: boolean; id?: string; htmlAttributes?: { [key: string]: any }; enterAnimation?: AnimationBuilder; leaveAnimation?: AnimationBuilder; }