native-fn
Version:
9 lines (8 loc) • 320 B
TypeScript
import type { NativePlugin } from "../../types";
import type { CameraInstance } from "./types";
import { CameraType } from "./constants/inedx";
export * from "./types";
declare const NativeMediaPlugin: NativePlugin<'Camera', CameraInstance, {
CameraType: typeof CameraType;
}, {}>;
export default NativeMediaPlugin;