File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ interface View {
10
10
setViewVisibility ?: boolean ;
11
11
color ?: string ;
12
12
uri ?: string ;
13
- ZeroTime ?: date | null ;
13
+ ZeroTime ?: Date | null ;
14
14
hide ?: boolean ;
15
15
}
16
16
interface CNViewItems extends Array < View > { }
@@ -40,14 +40,15 @@ interface CTN {
40
40
remove ?: boolean ;
41
41
foreground : boolean ;
42
42
id : number ;
43
- date ?: date ;
43
+ date ?: Date ;
44
44
isCountDown : boolean ;
45
45
setCustomContentView ?: boolean ;
46
46
}
47
47
48
- export function onEvent ( listener : function ) : Void ;
49
- export function CustomNotification ( a : CN , cb : function ) : Void ;
50
- export function TimerNotification ( a : CTN ) : Void ;
48
+ export function getArrayLength ( arr : any [ ] ) : number ;
49
+ export function onEvent ( listener : Function ) ;
50
+ export function CustomNotification ( a : CN , cb : Function ) ;
51
+ export function TimerNotification ( a : CTN ) ;
51
52
export function RemoveTimer ( n : number ) ;
52
- export const TYPES : Type ;
53
- export const FB_TYPE : FB_TYPE ;
53
+ export let TYPES : Type ;
54
+ export let FB_TYPE : FB_TYPE ;
You can’t perform that action at this time.
0 commit comments