|
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
|