UNPKG

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