idlize
1declare interface FormComponentInterface {
2(): FormComponentAttribute
3}
4
5declare class FormComponentAttribute extends CommonMethod<FormComponentAttribute> {
6
7size(value: { width: number; height: number }): FormComponentAttribute;
8}
9
10declare const FormComponent: FormComponentInterface