Skip to content

Commit a17ae8f

Browse files
authored
[office-js] [office-js-preview] (Excel) Remove incorrect param from datevalue method (DefinitelyTyped#74893)
1 parent cb66efd commit a17ae8f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

types/office-js-preview/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72134,7 +72134,7 @@ declare namespace Excel {
7213472134
*
7213572135
* @param dateText Is text that represents a date in a Microsoft Excel date format, between 1/1/1900 or 1/1/1904 (depending on the workbook's date system) and 12/31/9999.
7213672136
*/
72137-
datevalue(dateText: string | number | Excel.Range | Excel.RangeReference | Excel.FunctionResult<any>): FunctionResult<number>;
72137+
datevalue(dateText: string | Excel.Range | Excel.RangeReference | Excel.FunctionResult<any>): FunctionResult<number>;
7213872138
/**
7213972139
* Returns the day of the month, a number from 1 to 31.
7214072140
*

types/office-js/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66853,7 +66853,7 @@ declare namespace Excel {
6685366853
*
6685466854
* @param dateText Is text that represents a date in a Microsoft Excel date format, between 1/1/1900 or 1/1/1904 (depending on the workbook's date system) and 12/31/9999.
6685566855
*/
66856-
datevalue(dateText: string | number | Excel.Range | Excel.RangeReference | Excel.FunctionResult<any>): FunctionResult<number>;
66856+
datevalue(dateText: string | Excel.Range | Excel.RangeReference | Excel.FunctionResult<any>): FunctionResult<number>;
6685766857
/**
6685866858
* Returns the day of the month, a number from 1 to 31.
6685966859
*

0 commit comments

Comments
 (0)