Files
privacy.sexy/src/application/Context/State/Code/IApplicationCode.ts

8 lines
256 B
TypeScript

import { ICodeChangedEvent } from './Event/ICodeChangedEvent';
import { IEventSource } from '@/infrastructure/Events/IEventSource';
export interface IApplicationCode {
readonly changed: IEventSource<ICodeChangedEvent>;
readonly current: string;
}