Skip to content

Commit

Permalink
fix(multiple): approve api change in core/common and material/monaco-…
Browse files Browse the repository at this point in the history
…editor
  • Loading branch information
trik committed Jun 11, 2021
1 parent 6f6d456 commit 026413f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tools/public_api_guard/core/common.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export declare type AjfContext = {
};

export declare class AjfDndDirective {
file: Observable<FileList>;
readonly file: Observable<FileList>;
get over(): boolean;
onDragLeave(evt: DragEvent): void;
onDragOver(evt: DragEvent): void;
Expand All @@ -25,7 +25,7 @@ export interface AjfStringIdentifier {
}

export declare class AjfVideoDirective implements AfterViewInit {
isInit: EventEmitter<any>;
readonly isInit: EventEmitter<any>;
get source(): HTMLVideoElement;
set source(source: HTMLVideoElement);
constructor(_el: ElementRef, _renderer: Renderer2);
Expand Down
6 changes: 3 additions & 3 deletions tools/public_api_guard/material/monaco-editor.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export declare class AjfMonacoEditor implements OnDestroy, AfterViewInit, OnChan
hideCursorInOverviewRuler?: boolean;
hover?: boolean;
iconsInSuggestions?: boolean;
init: EventEmitter<any>;
readonly init: EventEmitter<any>;
language: IEditorLanguage;
lineDecorationsWidth?: number;
lineHeight?: number;
Expand Down Expand Up @@ -56,9 +56,9 @@ export declare class AjfMonacoEditor implements OnDestroy, AfterViewInit, OnChan
theme?: IEditorTheme;
useTabStops?: boolean;
set value(v: string);
valueChange: EventEmitter<any>;
readonly valueChange: EventEmitter<any>;
set valueToCompare(v: string);
valueToCompareChange: EventEmitter<any>;
readonly valueToCompareChange: EventEmitter<any>;
wordBasedSuggestions?: boolean;
wordSeparators?: string;
wordWrap?: boolean;
Expand Down

0 comments on commit 026413f

Please sign in to comment.