/
githubmirror
/
ionic
Обзор
Документация
Войти
/
githubmirror
/
ionic
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
core/src/utils/native/native-interface.ts
17 строк
490 B
Sean Perkins
refactor: use capacitor types for native plugins (#27755)
14 июл 2023, 18:27
Не верифицирован
14 июл 2023, 18:27
16c77cc
Код
Авторство
О чём код?
export enum ExceptionCode { /** * API is not implemented. * * This usually means the API can't be used because it is not implemented for * the current platform. */ Unimplemented = 'UNIMPLEMENTED', /** * API is not available. * * This means the API can't be used right now because: * - it is currently missing a prerequisite, such as network connectivity * - it requires a particular platform or browser version */ Unavailable = 'UNAVAILABLE', }