@unimodules/react-native-adapter
Version:
The adapter to use universal modules with the React Native bridge
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);
}