Skip to content

Commit 2e192d1

Browse files
Added type
1 parent 169dec4 commit 2e192d1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/types/index.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable @typescript-eslint/no-explicit-any */
22
/* eslint-disable no-unused-vars */
33
import { CSSProperties, JSXComponent, StyleValue, MaybeRef } from 'vue';
4-
import { ThemeInstance } from 'vuetify';
4+
import { IconOptions, ThemeInstance } from 'vuetify';
55
import type { EventBusKey } from '@vueuse/core';
66
import type { VTextField, VProgressCircular, VProgressLinear } from 'vuetify/components';
77
import type { VDataTable, VDataTableServer, VDataTableRow } from 'vuetify/labs/components';
@@ -232,7 +232,7 @@ export interface HeaderSlotProps extends AllSlotProps {
232232
slotProps: {
233233
allRowsSelected: boolean;
234234
columns: Column[];
235-
getSortIcon?: GetSortIcon;
235+
getSortIcon: GetSortIcon;
236236
index?: number;
237237
item?: Props['item'] | any;
238238
selectAll: SelectAll;
@@ -464,6 +464,7 @@ export interface UseHeaderRowClasses {
464464
export interface UseSortIconClasses {
465465
(
466466
options: {
467+
iconOptions: IconOptions | undefined,
467468
key: string,
468469
level: number,
469470
sortBy: Props['sortBy'],

0 commit comments

Comments
 (0)