import { ICodeChangedEvent } from '@/application/Context/State/Code/Event/ICodeChangedEvent'; import { IApplicationCode } from '@/application/Context/State/Code/IApplicationCode'; import { IEventSource } from '@/infrastructure/Events/IEventSource'; import { EventSource } from '@/infrastructure/Events/EventSource'; export class ApplicationCodeStub implements IApplicationCode { public changed: IEventSource = new EventSource(); public current = ''; }