UNPKG

332 BTypeScriptView Raw
1import { CodedError } from './CodedError';
2/**
3 * A class for errors to be thrown when a property is accessed which is
4 * unavailable, unsupported, or not currently implemented on the running
5 * platform.
6 */
7export declare class UnavailabilityError extends CodedError {
8 constructor(moduleName: string, propertyName: string);
9}