Interface CommentSupplierConfigure

CommentSupplier を新規作成する際の各種設定を保持します.

interface CommentSupplierConfigure {
    addComment(comment: string, ...conditions: ((ctx: CommentContext) => boolean)[]): CommentSupplierConfigure;
    comments(): CommentSchema[];
    comments(comments: CommentSchema[]): CommentSupplierConfigure;
    interval(): number;
    interval(interval: number): CommentSupplierConfigure;
    vars(): unknown;
    vars(vars: unknown): CommentSupplierConfigure;
}

Methods