Interface ICommentOptions

interface ICommentOptions {
    author?: string;
    children: readonly FileChild[];
    date?: Date;
    id: number;
    initials?: string;
}

Properties

author?: string
children: readonly FileChild[]
date?: Date
id: number
initials?: string

Generated using TypeDoc