From 7e2f4c85c82f73fa73e52ab3d88d062d595f9406 Mon Sep 17 00:00:00 2001 From: ChinoUkaegbu <77782533+ChinoUkaegbu@users.noreply.github.com> Date: Tue, 8 Oct 2024 17:17:53 +0100 Subject: [PATCH] docs: show MatListItem activated type --- src/material/list/list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/material/list/list.ts b/src/material/list/list.ts index 583f10f1bff7..642064c411dc 100644 --- a/src/material/list/list.ts +++ b/src/material/list/list.ts @@ -74,7 +74,7 @@ export class MatListItem extends MatListItemBase { /** Indicates whether an item in a `` is the currently active page. */ @Input() - get activated() { + get activated(): boolean { return this._activated; } set activated(activated) {