Folo/apps/mobile/global.d.ts

8 lines
171 B
TypeScript

import type { DOMProps } from "expo/dom"
import type { FC } from "react"
declare global {
export type WebComponent<P = object> = FC<P & { dom?: DOMProps }>
}
export {}