fix(form-core): added submitGroup to types definition file

This commit is contained in:
Joren Broekema 2020-09-28 12:22:02 +02:00 committed by Thomas Allmer
parent 6f08e9296b
commit a31b7217ba
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'@lion/form-core': patch
---
Added submitGroup to types definition file for FormGroupMixin.

View file

@ -8,7 +8,8 @@ import { ValidateHost } from '../validate/ValidateMixinTypes';
export declare class FormGroupHost {
protected static _addDescriptionElementIdsToField(): void;
get _inputNode(): HTMLElement;
_inputNode: HTMLElement;
submitGroup(): void;
resetGroup(): void;
prefilled: boolean;
touched: boolean;