avances en plantillas
This commit is contained in:
parent
0f84beacf1
commit
da0530d79b
2062 changed files with 598814 additions and 22 deletions
17
storage/public/dist/libs/imask/esm/controls/html-input-mask-element.d.ts
vendored
Normal file
17
storage/public/dist/libs/imask/esm/controls/html-input-mask-element.d.ts
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import HTMLMaskElement from './html-mask-element';
|
||||
export type InputElement = HTMLTextAreaElement | HTMLInputElement;
|
||||
/** Bridge between InputElement and {@link Masked} */
|
||||
export default class HTMLInputMaskElement extends HTMLMaskElement {
|
||||
/** InputElement to use mask on */
|
||||
input: InputElement;
|
||||
constructor(input: InputElement);
|
||||
/** Returns InputElement selection start */
|
||||
get _unsafeSelectionStart(): number | null;
|
||||
/** Returns InputElement selection end */
|
||||
get _unsafeSelectionEnd(): number | null;
|
||||
/** Sets InputElement selection */
|
||||
_unsafeSelect(start: number, end: number): void;
|
||||
get value(): string;
|
||||
set value(value: string);
|
||||
}
|
||||
//# sourceMappingURL=html-input-mask-element.d.ts.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue