react-native-flip
Version:
10 lines (9 loc) • 332 B
TypeScript
import { CodedError } from './CodedError';
/**
* A class for errors to be thrown when a property is accessed which is
* unavailable, unsupported, or not currently implemented on the running
* platform.
*/
export declare class UnavailabilityError extends CodedError {
constructor(moduleName: string, propertyName: string);
}