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    
Size: Mime:
import { InputState } from '@skava/packages/ui/forms';
export interface SecurityArgs {
    value: string;
    state: object;
}
export interface SecurityQuestionOption {
    disabled: boolean; /** @deprecated use isDisabled */
    value: string;
    isCustom: boolean;
    isDisabled: boolean;
    type: string;
}
export interface DisableInput {
    isDisabled: boolean;
}
export interface InputOptions extends InputState {
    options: Array<any>;
}