registry.d.ts 288 B

123456789
  1. import { Actor } from './Actor';
  2. export interface Registry {
  3. bookId(): string;
  4. register(id: string, actor: Actor): string;
  5. get(id: string): Actor | undefined;
  6. free(id: string): void;
  7. }
  8. export declare const registry: Registry;
  9. //# sourceMappingURL=registry.d.ts.map