@@ -22,7 +22,7 @@ declare namespace GoogleAppsScript {
22
22
deleteProperty ( key : string ) : Properties ;
23
23
getKeys ( ) : String [ ] ;
24
24
getProperties ( ) : Object ;
25
- getProperty ( key : string ) : string ;
25
+ getProperty ( key : string ) : string | null ;
26
26
setProperties ( properties : Object ) : Properties ;
27
27
setProperties ( properties : Object , deleteAllOthers : boolean ) : Properties ;
28
28
setProperty ( key : string , value : string ) : Properties ;
@@ -60,7 +60,7 @@ declare namespace GoogleAppsScript {
60
60
deleteProperty ( key : string ) : ScriptProperties ;
61
61
getKeys ( ) : String [ ] ;
62
62
getProperties ( ) : Object ;
63
- getProperty ( key : string ) : string ;
63
+ getProperty ( key : string ) : string | null ;
64
64
setProperties ( properties : Object ) : ScriptProperties ;
65
65
setProperties ( properties : Object , deleteAllOthers : boolean ) : ScriptProperties ;
66
66
setProperty ( key : string , value : string ) : ScriptProperties ;
@@ -77,7 +77,7 @@ declare namespace GoogleAppsScript {
77
77
deleteProperty ( key : string ) : UserProperties ;
78
78
getKeys ( ) : String [ ] ;
79
79
getProperties ( ) : Object ;
80
- getProperty ( key : string ) : string ;
80
+ getProperty ( key : string ) : string | null ;
81
81
setProperties ( properties : Object ) : UserProperties ;
82
82
setProperties ( properties : Object , deleteAllOthers : boolean ) : UserProperties ;
83
83
setProperty ( key : string , value : string ) : UserProperties ;
0 commit comments