UNPKG

expo-quanta

Version:

Quanta.js/Expo: Expo SDK for Quanta Tools

23 lines (22 loc) 750 B
import { AbstractQuantaBase } from "./abstract"; declare class QuantaExpoType extends AbstractQuantaBase { init(): void; makeAsyncStorage(): { setItem: (key: string, value: string) => Promise<void>; getItem: (key: string) => Promise<string>; }; setupUrlChangeListeners(): void; handleUrlChange(): Promise<void>; sendViewEvent(): Promise<void>; getScriptTag(): HTMLScriptElement | null; getAppIdFromScriptTag(): string | null; isServerSide(): boolean; systemLanguageProvider(): string; getBundleId(): string; getVersion(): string; getDeviceInfo(): string; getOSInfo(): string; isDebug(): boolean; } export declare const Quanta: QuantaExpoType; export { AbstractQuantaBase };