react-playmakers
Version:
React wrapper providing utilities for PlayMakers integration
18 lines (17 loc) • 429 B
TypeScript
export declare enum CommentStateEnum {
PUBLIC = "public",
STUDIO_REJECTED = "studioRejected",
STUDIO_ACCEPTED = "studioAccepted"
}
export interface CommentType {
id: string;
createdAt: string;
ownerId: string;
submissionId: string;
body: string;
state: CommentStateEnum;
}
export interface CommentExtendedType extends CommentType {
delete: Function;
edit: Function;
}