Skip to content

Commit 1f9e924

Browse files
committed
feat(types): add declaration for inheritAttrs
1 parent 6118759 commit 1f9e924

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

flow/options.js

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ declare type ComponentOptions = {
6969
extends?: Class<Component> | Object;
7070
delimiters?: [string, string];
7171
comments?: boolean;
72+
inheritAttrs?: boolean;
7273

7374
// private
7475
_isComponent?: true;

types/options.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export interface ComponentOptions<V extends Vue> {
5555
extends?: ComponentOptions<Vue> | typeof Vue;
5656
delimiters?: [string, string];
5757
comments?: boolean;
58+
inheritAttrs?: boolean;
5859
}
5960

6061
export interface FunctionalComponentOptions {

0 commit comments

Comments
 (0)