Type Alias CommentMetadataValue

CommentMetadataValue:
    | string
    | number
    | boolean
    | null
    | CommentMetadataValue[]
    | {
        [key: string]: CommentMetadataValue;
    }