UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

20 lines (18 loc) 662 B
import { $DeviceType } from '@docsvision/webclient/StandardServices'; import { $LocalStorage } from '@docsvision/webclient/System/$LocalStorage'; import React from 'react'; export interface SecurityDialogFrameProps { header: string; children: React.ReactNode; accepting: boolean; applying: boolean; loaded: boolean; isOpen: boolean; canApply: boolean; renderInheritanceButton: () => React.ReactNode; onAcceptClick: () => void; onApplyClick: () => void; onCancelClick: () => void; services: $LocalStorage & $DeviceType; } export declare const SecurityDialogFrame: (props: SecurityDialogFrameProps) => JSX.Element;