Skip to content

Commit 547d474

Browse files
Fix types
1 parent 392a03d commit 547d474

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/plugin/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ import VDrilldownTable from './VDrilldownTable.vue';
77

88
export const globalOptions = Symbol();
99

10-
export function createVDrilldownTable(options: Omit<Props,
11-
'colors' | 'columnWidths' | 'drilldown' | 'isDrilldown' | 'item' | 'tableType'
12-
> = {}) {
10+
export function createVDrilldownTable(options: Partial<Props> = {}) {
1311
const install = (app: App) => {
1412
app.provide(globalOptions, options);
1513

0 commit comments

Comments
 (0)