UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

8 lines (7 loc) 292 B
/** @internal */ export interface IFileCommentCallbacks { beforeAddCallback: (commentText: string) => Promise<any>; beforeDeleteCallback: (commentId: string) => Promise<any>; afterAddCallback: (commentText: string) => void; afterDeleteCallback: (commentId: string) => void; }