UNPKG

@thebitbybit/craftjs-layers

Version:

A Photoshop-like layers panel for your page editor

9 lines (8 loc) 373 B
/// <reference types="react" /> import { SubscriberAndCallbacksFor } from '@craftjs/utils'; import { LayerMethods } from './actions'; export declare type LayerStore = SubscriberAndCallbacksFor<typeof LayerMethods>; export declare type LayerManagerContext = { store: LayerStore; }; export declare const LayerManagerContext: import("react").Context<LayerManagerContext>;