interface Commentable {
    addComment(text: string): Promise<Model<any, ModelSetOptions>>;
    getComments(): Collection;
}

Implemented by

Methods