UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

9 lines (7 loc) 327 B
import { HtmlProps } from "@docsvision/web/core/component"; import React from "react"; export interface ITextInputDialogFramePops extends HtmlProps.div { label: string | React.ReactNode; renderInput: () => React.ReactNode; } export declare function TextInputDialogFrame(props: ITextInputDialogFramePops): JSX.Element;