@asoftwareworld/form-builder-pro
Version:
ASW Form Builder Pro helps you with rapid development and designed web forms which includes several controls. The key feature of Form Builder is to make your content attractive and effective. We can customize our control at run time and preview the same b
22 lines (21 loc) • 670 B
TypeScript
import { InjectionToken } from '@angular/core';
export interface IConfig {
sufix: string;
prefix: string;
clearIfNotMatch: boolean;
showTemplate: boolean;
showMaskTyped: boolean;
dropSpecialCharacters: boolean | string[];
specialCharacters: string[];
patterns: {
[character: string]: {
pattern: RegExp;
optional?: boolean;
};
};
}
export type optionsConfig = Partial<IConfig>;
export declare const config: InjectionToken<string>;
export declare const NEW_CONFIG: InjectionToken<string>;
export declare const INITIAL_CONFIG: InjectionToken<IConfig>;
export declare const initialConfig: IConfig;