UNPKG

@btfuse/core

Version:

A native-first framework for building hybdrid web-native applications

10 lines (9 loc) 232 B
import { Platform } from "./Platform"; /** * A strategy to resolve the runtime's platform */ export declare class PlatformResolver { resolve(): Platform; isIOSEnvironment(): boolean; isAndroidEnvironment(): boolean; }