import I_Entity from './I_Entity'; import { name } from '../../types'; export default abstract class Entity implements I_Entity { readonly id: string; readonly name: string; constructor({ name }: name); start(): void; stop(): void; } //# sourceMappingURL=Entity.d.ts.map