Skip to content

Commit 84d6575

Browse files
committed
chore: 优化 TableColumnSchemaSlots 类型
1 parent ac1ddfb commit 84d6575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_internal/table/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export interface DefaultRow {
55
}
66

77
export type TableColumnSchemaSlots<RawSlots> = {
8-
[K in keyof RawSlots]: RawSlots[K]
8+
[K in keyof RawSlots]?: RawSlots[K]
99
} & {
1010
[K: string]: (data: any) => VNodeChild
1111
}

0 commit comments

Comments
 (0)