Interface EventOptions

interface EventOptions {
    description?: string;
    icon?: string;
    notify?: boolean;
    parser?: "markdown" | "text";
    tags?: Record<string, string | number | boolean>;
    timestamp?: number;
    user_id?: string;
}

Properties

description?: string
icon?: string
notify?: boolean
parser?: "markdown" | "text"
tags?: Record<string, string | number | boolean>
timestamp?: number
user_id?: string

Generated using TypeDoc