input-number.component.d.ts 949 B

12345678910111213141516171819
  1. import { AfterViewInit, OnInit } from '@angular/core';
  2. import { FormGroupDirective } from '@angular/forms';
  3. import { InputComponent } from '../input/input.component';
  4. import * as i0 from "@angular/core";
  5. export declare class InputNumberComponent extends InputComponent implements OnInit, AfterViewInit {
  6. protected formGroupDirective: FormGroupDirective;
  7. private readonly decimalPipe;
  8. private rawValue;
  9. validate: 'integer' | 'credit-card';
  10. constructor(formGroupDirective: FormGroupDirective);
  11. onFocusOut(): void;
  12. onFocusIn(): void;
  13. ngOnInit(): void;
  14. ngAfterViewInit(): void;
  15. formatNumber(): void;
  16. reverseFormatNumber(): void;
  17. static ɵfac: i0.ɵɵFactoryDeclaration<InputNumberComponent, [{ optional: true; }]>;
  18. static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent, "ct-input-number", never, { "validate": { "alias": "validate"; "required": false; }; }, {}, never, never, true, never>;
  19. }