@logixjs/sandbox
    Preparing search index...

    Interface UiIntentPacket

    interface UiIntentPacket {
        callbacks: readonly string[];
        children?: readonly UiIntentPacket[];
        component: string;
        id: string;
        intent: "mount" | "update" | "unmount" | "action";
        meta?: {
            label?: string;
            severity?: "error" | "info" | "warn";
            stepId?: string;
            storyId?: string;
            tags?: readonly string[];
        };
        props: Record<string, unknown>;
    }
    Index

    Properties

    callbacks: readonly string[]
    children?: readonly UiIntentPacket[]
    component: string
    id: string
    intent: "mount" | "update" | "unmount" | "action"
    meta?: {
        label?: string;
        severity?: "error" | "info" | "warn";
        stepId?: string;
        storyId?: string;
        tags?: readonly string[];
    }
    props: Record<string, unknown>