UNPKG

expo-eas-observe

Version:

Expo module that exposes various app metrics and sends them to EAS Observe

13 lines 529 B
import { NativeModule } from 'expo'; import type { ExpoAppMetricsModuleType } from './types'; export * from './types'; declare class ExpoAppMetricsModule extends NativeModule implements ExpoAppMetricsModuleType { markFirstRender(): Promise<void>; markInteractive(): Promise<void>; dispatchEvents(): Promise<void>; getStoredEntries(): Promise<never[]>; clearStoredEntries(): Promise<void>; } declare const _default: typeof ExpoAppMetricsModule; export default _default; //# sourceMappingURL=module.web.d.ts.map