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