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

Properties

addComments?: ((comments) => void)

Type declaration

    • (comments): void
    • Parameters

      Returns void

draw?: ((vpos) => void)

Type declaration

    • (vpos): void
    • Parameters

      • vpos: number

      Returns void

transformComments?: ((comments) => IComment[])

Type declaration

Generated using TypeDoc