interface IPlugin {
    addComments?: ((comments: IComment[]) => void);
    draw?: ((vpos: number) => void);
    transformComments?: ((comments: IComment[]) => IComment[]);
}

Properties

addComments?: ((comments: IComment[]) => void)
draw?: ((vpos: number) => void)
transformComments?: ((comments: IComment[]) => IComment[])