native-fn
Version:
13 lines (12 loc) • 497 B
TypeScript
import type { NativePlugin } from "../../types";
import { PlatformInstance } from "./types";
import { Browsers, CrossPlatformFramework, Devices, Engines, OS } from "./constants";
export * from "./types";
declare const NativePlatformPlugin: NativePlugin<'Platform', PlatformInstance, {
OS: typeof OS;
Devices: typeof Devices;
Engines: typeof Engines;
Browsers: typeof Browsers;
CrossPlatformFramework: typeof CrossPlatformFramework;
}, {}>;
export default NativePlatformPlugin;