python-archieve-projects/WechatBot/node_modules/xstate/es/registry.d.ts

9 lines
288 B
TypeScript

import { Actor } from './Actor';
export interface Registry {
bookId(): string;
register(id: string, actor: Actor): string;
get(id: string): Actor | undefined;
free(id: string): void;
}
export declare const registry: Registry;
//# sourceMappingURL=registry.d.ts.map