Skip to content

Commit 9916f28

Browse files
committed
fix(types): make sfc options partial
1 parent c256ea7 commit 9916f28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/store.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ export interface StoreState {
5353
}
5454

5555
export interface SFCOptions {
56-
script?: Omit<SFCScriptCompileOptions, 'id'>
57-
style?: SFCAsyncStyleCompileOptions
58-
template?: SFCTemplateCompileOptions
56+
script?: Partial<SFCScriptCompileOptions>
57+
style?: Partial<SFCAsyncStyleCompileOptions>
58+
template?: Partial<SFCTemplateCompileOptions>
5959
}
6060

6161
export interface Store {

0 commit comments

Comments
 (0)