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 {
1010 setViewVisibility ?: boolean ;
1111 color ?: string ;
1212 uri ?: string ;
13- ZeroTime ?: date | null ;
13+ ZeroTime ?: Date | null ;
1414 hide ?: boolean ;
1515}
1616interface CNViewItems extends Array < View > { }
@@ -40,14 +40,15 @@ interface CTN {
4040 remove ?: boolean ;
4141 foreground : boolean ;
4242 id : number ;
43- date ?: date ;
43+ date ?: Date ;
4444 isCountDown : boolean ;
4545 setCustomContentView ?: boolean ;
4646}
4747
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 ) ;
5152export 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