File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ export type TimeRange = {
4
4
/**
5
5
* When the rule should start to be active, in Unix epoch time.
6
6
*/
7
- from : number ;
7
+ from ? : number | undefined ;
8
8
9
9
/**
10
10
* When the rule should stop to be active, in Unix epoch time.
11
11
*/
12
- until : number ;
12
+ until ? : number | undefined ;
13
13
} ;
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ export type TimeRange = {
4
4
/**
5
5
* When the rule should start to be active, in Unix epoch time.
6
6
*/
7
- from : number ;
7
+ from ? : number | undefined ;
8
8
9
9
/**
10
10
* When the rule should stop to be active, in Unix epoch time.
11
11
*/
12
- until : number ;
12
+ until ? : number | undefined ;
13
13
} ;
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ export type TimeRange = {
4
4
/**
5
5
* When the rule should start to be active, in Unix epoch time.
6
6
*/
7
- from : number ;
7
+ from ? : number | undefined ;
8
8
9
9
/**
10
10
* When the rule should stop to be active, in Unix epoch time.
11
11
*/
12
- until : number ;
12
+ until ? : number | undefined ;
13
13
} ;
You can’t perform that action at this time.
0 commit comments