Universal Layer Manager
    Preparing search index...

    Type Alias ParentEvent

    ParentEvent:
        | { type: "CHILD.VISIBLE"; layerId: string }
        | {
            type: "LAYERS.ADD_CHILD";
            child: ChildLayerActor;
            index?: number;
            position?: "top" | "bottom";
        }
        | { type: "LAYERS.REMOVE_CHILD"; id: string }