a zip code crypto-currency system good for red ONLY

input-tester.d.ts 517B

123456789101112131415
  1. import { BaseInput } from './base-input';
  2. export declare const TEXT_CORPUS: any;
  3. export declare const NUMBER_CORPUS: any[];
  4. export declare const BOOLEAN_CORPUS: any[];
  5. export declare const ANY_CORPUS: any[];
  6. export interface TestConfig {
  7. defaultValue: any;
  8. corpus: any;
  9. testItem?: boolean;
  10. testForm?: boolean;
  11. onValueChange?: (value: any) => boolean;
  12. onFocusChange?: (isFocused: boolean) => boolean;
  13. }
  14. export declare function commonInputTest<T>(input: BaseInput<T>, config: TestConfig): void;