@espressif/rainmaker-base-cdf
    Preparing search index...

    Interface Scene

    interface Scene {
        actions: { [key: string]: { [key: string]: { [key: string]: any } } };
        activate: () => Promise<undefined | ESPAPIResponse>;
        add: () => Promise<undefined | ESPAPIResponse>;
        callbackUpdateOperation: { [key: string]: SceneOperation };
        devicesCount: number;
        edit: (
            __namedParameters: { actions: any; info?: string; name: string },
        ) => Promise<undefined | ESPAPIResponse>;
        id: string;
        info?: string;
        name: string;
        nodes: string[];
        remove: () => Promise<undefined | ESPAPIResponse>;
    }

    Implemented by

    Index

    Properties

    actions: { [key: string]: { [key: string]: { [key: string]: any } } }
    activate: () => Promise<undefined | ESPAPIResponse>
    add: () => Promise<undefined | ESPAPIResponse>
    callbackUpdateOperation: { [key: string]: SceneOperation }
    devicesCount: number
    edit: (
        __namedParameters: { actions: any; info?: string; name: string },
    ) => Promise<undefined | ESPAPIResponse>
    id: string
    info?: string
    name: string
    nodes: string[]
    remove: () => Promise<undefined | ESPAPIResponse>