Rezi
    Preparing search index...

    Type Alias LayerRegistry

    LayerRegistry: Readonly<
        {
            clear: () => void;
            get: (id: string) => Layer | undefined;
            getAll: () => readonly Layer[];
            getTopmost: () => Layer | undefined;
            getTopmostModal: () => Layer | undefined;
            register: (layer: LayerInput) => void;
            unregister: (id: string) => void;
            updateRect: (id: string, rect: Rect) => void;
        },
    >

    Layer registry for managing the layer stack.