Skip to content

Commit ee47476

Browse files
committed
refactor(multiple): approve api changes
1 parent ab31b21 commit ee47476

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

goldens/material/table/index.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export class MatTable<T> extends CdkTable<T> {
174174
}
175175

176176
// @public
177-
export class MatTableDataSource<T, P extends MatPaginator = MatPaginator> extends DataSource<T> {
177+
export class MatTableDataSource<T extends object | ArrayLike<unknown>, P extends MatPaginator = MatPaginator> extends DataSource<T> {
178178
constructor(initialData?: T[]);
179179
connect(): BehaviorSubject<T[]>;
180180
get data(): T[];

goldens/material/tooltip/index.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class MatTooltip implements OnDestroy, AfterViewInit {
5353
set hideDelay(value: NumberInput);
5454
_isTooltipVisible(): boolean;
5555
get message(): string;
56-
set message(value: string | null | undefined);
56+
set message(value: unknown);
5757
// (undocumented)
5858
ngAfterViewInit(): void;
5959
ngOnDestroy(): void;

0 commit comments

Comments
 (0)