export interface DiffEditorModel {
    code: string;
    language: string;
}
export interface NgxEditorModel {
    value: string;
    language?: string;
    uri?: any;
}
