libs/core/monaco-editor/src/lib/monaco-editor/types.ts
Properties |
| language (Optional) | |
| Type |
string
|
| uri (Optional) | |
| Type |
any
|
| value | |
| Type |
string
|
export interface DiffEditorModel {
code: string;
language: string;
}
export interface NgxEditorModel {
value: string;
language?: string;
uri?: any;
}