interface PrefabAction {
    events?: PrefabActionStep[];
    name: string;
    options?: {
        ref: {
            result: string;
        };
    };
    ref: {
        endpointId?: string;
        id: string;
    };
    useNewRuntime: boolean;
}

Properties

events?: PrefabActionStep[]
name: string
options?: {
    ref: {
        result: string;
    };
}
ref: {
    endpointId?: string;
    id: string;
}
useNewRuntime: boolean