Skip to content

Commit 86948ba

Browse files
author
Jiaqi Liu
committed
fix(d.ts): support ts@>3.2
1 parent c029ff1 commit 86948ba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import React from 'react';
66
import { ColProps, Sizes } from 'react-bootstrap';
7-
import { BaseEasyFieldComponentProps, FieldValidatorProps, OtherKeys } from 'react-formutil';
7+
import { BaseEasyFieldComponentProps, OtherKeys } from 'react-formutil';
88

99
export * from 'react-formutil';
1010

@@ -31,7 +31,7 @@ export interface FormGroupComponentProps<T = any, P = {}, Fields = {}, WeakField
3131
}
3232

3333
export class FormGroup<T = any, P = {}, Fields = {}, WeakFields = Fields> extends React.Component<
34-
FormGroupComponentProps<T, P, Fields, WeakFields> & FieldValidatorProps<P> & OtherKeys
34+
FormGroupComponentProps<T, P, Fields, WeakFields> & OtherKeys
3535
> {}
3636

3737
interface CheckboxGroupProps<T> {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-bootstrap-formutil",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"description": "Happy to build forms with react-formutil in the project based on react-bootstrap ^_^",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm.js",

0 commit comments

Comments
 (0)