UNPKG

@visactor/vrender-core

Version:

```typescript import { xxx } from '@visactor/vrender-core'; ```

7 lines (6 loc) 308 B
import type { ServiceIdentifier } from './explicit-binding'; export declare const CONTRIBUTION_STORE_STATE_SYMBOL: unique symbol; export interface IContributionStoreState<T = any> { store: Map<ServiceIdentifier<T>, Set<T>>; } export declare function getContributionStoreState(): IContributionStoreState;