Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / features / GiftCard / Forms / FormState.d.ts
Size: Mime:
import { FormState } from '@skava/packages/ui/forms';
declare class GiftCardState extends FormState {
    name: string;
    inputsList: {
        identity: string;
        name: string;
        className: any;
        wrapperClassName: any;
        labelText: any;
        qa: any;
        ariaLabel: any;
        maxLength: string;
        type: string;
        value: string;
        validationType: string;
        errorMessageFor: string;
    }[];
}
declare const giftCardState: GiftCardState;
export default giftCardState;
export { giftCardState as giftCardFormState, GiftCardState };