concis
Version:
Concis Component library for PC
19 lines (18 loc) • 463 B
TypeScript
declare class FormItemAttrs {
wrapperCol: number;
wrapperTol: number;
layout: string;
constructor(wrapperCol: number, wrapperTol: number, layout: string);
getStyle(): {
marginBottom: string;
marginTop: string;
};
formatLayout(): {};
}
declare class FormItemLabel {
layout: string;
constructor(layout: string);
getStyle(): {};
getAlign(): {};
}
export { FormItemAttrs, FormItemLabel };