native.ts 204 B

12345678910111213
  1. declare global {
  2. interface Window {
  3. GAMI_BRIDGE?: {
  4. requestHeader?: Record<string, unknown>
  5. safeArea: string
  6. }
  7. }
  8. }
  9. export type NativeSafeArea = {
  10. top: number
  11. bottom: number
  12. }