@ngx-performance-ui/core
Version:
Ngx Performance UI - Core
11 lines (10 loc) • 362 B
TypeScript
export declare namespace Mask {
interface Config {
mask: Array<string | RegExp> | ((raw: string) => Array<string | RegExp>) | false;
guide?: boolean;
keepCharPositionsMask?: boolean;
pipe?: (conformedValue: string, config: any) => false | string | Object;
placeholderChar?: string;
showMask?: boolean;
}
}