UNPKG

repond-events

Version:
28 lines (27 loc) 966 B
import { StatePath } from "repond"; import { ChainId } from "./types"; type FastChainInfoMapItem = { nowChildFastChainId?: ChainId; isCanceled: boolean; parentFastChainId?: ChainId; variablesMap: Record<string, any>; }; export declare const repondEventsMeta: { defaultElapsedTimePath: StatePath<any>; allEventTypeGroups: Record<string, Record<string, any>>; defaultChainId: ChainId; emojiKeys: Record<string, string>; allValueTypeGroups: Record<string, Record<string, any>>; valueEmojiKeys: Record<string, string>; variablesByScopesMap: Record<string, Record<string, any>>; fastChain: { nowRootFastChainId: ChainId; nowRootFastChainParentId: ChainId; nowFastChainsInfoMap: Record<ChainId, FastChainInfoMapItem>; nowDescendantFastChainId: Record<ChainId, ChainId[]>; foundFastReturnValue: any; getEventValueChainId: ChainId; }; resolveValueMap: {}; }; export {};