Creating Plot Twists
    Preparing search index...

    Type Alias Log

    Represents a log entry from a twist execution.

    type Log = {
        timestamp: Date;
        environment: "personal" | "private" | "review" | "public";
        severity: "log" | "error" | "warn" | "info";
        message: string;
    }
    Index

    Properties

    timestamp: Date
    environment: "personal" | "private" | "review" | "public"
    severity: "log" | "error" | "warn" | "info"
    message: string