Add missing 'expansion' slot TypeScript definition

The DataTable.d.ts is missing the 'expansion' field
in the $slots class field.
pull/1628/head
Sam Perumal 2021-10-02 19:04:15 +02:00
parent 1a72acabb5
commit b6a3beefd2
1 changed files with 1 additions and 0 deletions

View File

@ -114,6 +114,7 @@ declare class DataTable {
groupheader: VNode[];
groupfooter: VNode[];
loading: VNode[];
expansion: VNode[];
};
}