ny
昨天 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
export interface RegItem {
  pattern: string;
  message: string;
}
export interface MaskConfig {
  filler: string;
  maskType: number;
  prefixType: number;
  prefixLimit: number;
  prefixSpecifyChar: string;
  suffixType: number;
  suffixLimit: number;
  suffixSpecifyChar: string;
  ignoreChar: string;
  useUnrealMask: boolean;
  unrealMaskLength: number;
}
export interface SelectProps {
  label: string;
  value: string;
}
export interface TreeProps extends SelectProps {
  children: string;
}
export type DateFormatType =
  | 'yyyy'
  | 'YYYY'
  | 'yyyy-MM'
  | 'YYYY-MM'
  | 'yyyy-MM-dd'
  | 'YYYY-MM-DD'
  | 'yyyy-MM-dd HH:mm'
  | 'YYYY-MM-DD HH:mm'
  | 'yyyy-MM-dd HH:mm:ss'
  | 'YYYY-MM-DD HH:mm:ss';
export type TimeFormatType = 'HH:mm' | 'HH:mm:ss';
export type SizeUnitType = 'GB' | 'KB' | 'MB';
export type AlignType = 'center' | 'left' | 'right';