UNPKG

@ssibrahimbas/v-mask

Version:
6 lines (5 loc) 306 B
import type { MaskItType } from "./mask-it"; import type { TokenType } from "./tokens"; declare type DynamicMaskResult = (value: string, masked?: boolean) => string; export declare const dynamicMask: (maskIt: MaskItType, masks: string[], tokens: Record<string, TokenType>) => DynamicMaskResult; export {};