UNPKG

@expo/config

Version:

A library for interacting with the app.json

12 lines (11 loc) 372 B
import { ConfigErrorCode } from './Config.types'; /** * Based on `JsonFileError` from `@expo/json-file` */ export declare class ConfigError extends Error { code: ConfigErrorCode; cause?: Error | undefined; readonly name = "ConfigError"; readonly isConfigError = true; constructor(message: string, code: ConfigErrorCode, cause?: Error | undefined); }