| 2 | import * as React from 'react'; |
| 3 | |
| 4 | export interface FrameComponentProps |
| 5 | extends React.IframeHTMLAttributes<HTMLIFrameElement>, |
| 6 | React.RefAttributes<HTMLIFrameElement> { |
| 7 | head?: React.ReactNode | undefined; |
| 8 | mountTarget?: string | undefined; |
| 9 | initialContent?: string | undefined; |
| 10 | contentDidMount?: (() => void) | undefined; |
| 11 | contentDidUpdate?: (() => void) | undefined; |
| 12 | dangerouslyUseDocWrite?: boolean | undefined; |
| 13 | children: React.ReactNode; |
| 14 | } |
| 15 | |
| 16 | const FrameComponent: React.ForwardRefExoticComponent<FrameComponentProps>; |
| 17 | export default FrameComponent; |
nothing calls this directly
no outgoing calls
no test coverage detected