From d0434c72325004f37dbd2ef03907cfde57331022 Mon Sep 17 00:00:00 2001 From: ChrRubin <20059164+ChrRubin@users.noreply.github.com> Date: Tue, 7 Sep 2021 21:15:50 +0800 Subject: [PATCH] Fix List slot typings --- src/components/List/List.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/List/List.d.ts b/src/components/List/List.d.ts index d36d5447..0cd61b7a 100644 --- a/src/components/List/List.d.ts +++ b/src/components/List/List.d.ts @@ -37,7 +37,11 @@ declare const _ListEvents: { }; declare const _ListSlots: { item: { - item: {}; + item: ListItemBase; + dense: boolean; + value: string; + }; + items: { dense: boolean; value: string; };