UNPKG

@drewsonne/maya-dates

Version:

Typescript package to manipulate dates in the Maya Calendar

10 lines (9 loc) 271 B
export declare class Comment { content: string; constructor(content: string); merge(other: Comment): Comment; empty(): boolean; equals(otherComment: Comment): boolean; toString(): string; } export declare function isComment(c: any): c is Comment;