UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

10 lines (9 loc) 372 B
/// <reference types="react" /> import { AccessListRow } from '@docsvision/webclient/Platform/AccessListRow'; export interface AccessListEntryRowRemoveProps { row: AccessListRow; canEdit: boolean; title: string; onRemove: (row: AccessListRow) => void; } export declare const AccessListEntryRowRemove: (props: AccessListEntryRowRemoveProps) => JSX.Element;