vijay06
Version:
awesome ngx mask
25 lines (20 loc) • 507 B
text/typescript
import { Component, Input } from '@angular/core';
import { FormControl } from '@angular/forms';
export class CypressTestMaskComponent {
public mask!: string | null;
public hiddenInput: boolean = false;
public prefix: string = '';
public form: FormControl = new FormControl('');
}