Release 0.7.28

This commit is contained in:
Yanzhen Yu
2020-07-18 13:32:36 +08:00
parent e4593ff76d
commit c206e100f1
3 changed files with 19 additions and 4 deletions

15
typings/types.d.ts vendored
View File

@@ -53,3 +53,18 @@ export interface INode extends Node {
export declare type idNodeMap = {
[key: number]: INode;
};
export declare type MaskInputOptions = Partial<{
color: boolean;
date: boolean;
'datetime-local': boolean;
email: boolean;
month: boolean;
number: boolean;
range: boolean;
search: boolean;
tel: boolean;
text: boolean;
time: boolean;
url: boolean;
week: boolean;
}>;