File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export class MatChipContent {
4141 _handlePrimaryActionInteraction ( ) : void ;
4242 remove ( ) : void ;
4343 disabled : boolean ;
44- _edit ( ) : void ;
44+ _edit ( event : Event ) : void ;
4545 _isEditing ?: boolean ;
4646 } > ( MAT_CHIP ) ;
4747
Original file line number Diff line number Diff line change 88
99import { ENTER , ModifierKey } from '@angular/cdk/keycodes' ;
1010import { InjectionToken } from '@angular/core' ;
11+ import type { MatChip } from './chip' ;
1112
1213/** Key that can be used as a separator between chips. */
1314export interface SeparatorKey {
@@ -69,4 +70,4 @@ export const MAT_CHIP_REMOVE = new InjectionToken('MatChipRemove');
6970/**
7071 * Injection token used to avoid a circular dependency between the `MatChip` and `MatChipAction`.
7172 */
72- export const MAT_CHIP = new InjectionToken ( 'MatChip' ) ;
73+ export const MAT_CHIP = new InjectionToken < MatChip > ( 'MatChip' ) ;
You can’t perform that action at this time.
0 commit comments