PluginProbe
Booking Calendar / 11.8.4
Booking Calendar v11.8.4
11.8.4 11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 All 204 releases
booking / vendors / imask / esm / masked / function.d.ts

function.d.ts in Booking Calendar 11.8.4, at vendors/imask/esm/masked/function.d.ts

18 lines 710 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import Masked, { type MaskedOptions } from './base';
2 export type MaskedFunctionOptions = MaskedOptions<MaskedFunction>;
3 /** Masking by custom Function */
4 export default class MaskedFunction<Value = any> extends Masked<Value> {
5 /** */
6 mask: (value: string, masked: Masked) => boolean;
7 /** Enable characters overwriting */
8 overwrite?: boolean | 'shift' | undefined;
9 /** */
10 eager?: boolean | 'remove' | 'append' | undefined;
11 /** */
12 skipInvalid?: boolean | undefined;
13 /** */
14 autofix?: boolean | 'pad' | undefined;
15 updateOptions(opts: Partial<MaskedFunctionOptions>): void;
16 _update(opts: Partial<MaskedFunctionOptions>): void;
17 }
18 //# sourceMappingURL=function.d.ts.map