native-fn
Version:
14 lines (13 loc) • 351 B
TypeScript
export * from "./appearance";
import type { AppearanceInstance } from "./appearance";
import { Appearances } from "../constants";
declare module 'native-fn' {
interface NativePlugins {
Appearance: AppearanceInstance;
}
interface NativeConstants {
Appearances: typeof Appearances;
}
interface NativeErrors {
}
}