Interface CreateReplyInput

interface CreateReplyInput {
    content?: {
        slug: string;
        type: string;
    }[];
    parentSlug: string;
    postText?: string;
    roomSlug: string;
}

Properties

content?: {
    slug: string;
    type: string;
}[]
parentSlug: string
postText?: string
roomSlug: string