@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
11 lines (9 loc) • 422 B
TypeScript
/// <reference types="react" />
import { HtmlProps } from '@docsvision/web/core/component/HtmlProps';
import { PollStatus } from '@docsvision/webclient/System/PollService';
export interface PollProps extends HtmlProps.iframe {
updateStatus(status: PollStatus): void;
}
export declare const MIN_POLL_TIME = 30;
/** Контейнер для опроса */
export declare function Poll(props: PollProps): JSX.Element;