avances en plantillas
This commit is contained in:
parent
0f84beacf1
commit
da0530d79b
2062 changed files with 598814 additions and 22 deletions
18
storage/public/dist/libs/imask/esm/masked/function.d.ts
vendored
Normal file
18
storage/public/dist/libs/imask/esm/masked/function.d.ts
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import Masked, { type MaskedOptions } from './base';
|
||||
export type MaskedFunctionOptions = MaskedOptions<MaskedFunction>;
|
||||
/** Masking by custom Function */
|
||||
export default class MaskedFunction<Value = any> extends Masked<Value> {
|
||||
/** */
|
||||
mask: (value: string, masked: Masked) => boolean;
|
||||
/** Enable characters overwriting */
|
||||
overwrite?: boolean | 'shift' | undefined;
|
||||
/** */
|
||||
eager?: boolean | 'remove' | 'append' | undefined;
|
||||
/** */
|
||||
skipInvalid?: boolean | undefined;
|
||||
/** */
|
||||
autofix?: boolean | 'pad' | undefined;
|
||||
updateOptions(opts: Partial<MaskedFunctionOptions>): void;
|
||||
_update(opts: Partial<MaskedFunctionOptions>): void;
|
||||
}
|
||||
//# sourceMappingURL=function.d.ts.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue