@enre/pop-runtypes
Version:
runtypes for validating data using simple-runtypes
14 lines (13 loc) • 346 B
TypeScript
export declare const GetInboxCommentsResponse: import("simple-runtypes").Runtype<{
id: string;
commentBody: string;
authorDisplayName: string;
postId: string;
createdAt: Date;
postAuthorUid: string;
authorId: string;
parentComment?: {
commentId: string;
authorUid: string;
} | undefined;
}[]>;