Skip to content

Commit f7899e9

Browse files
committed
fix(constants): add 'as const' to FIRST constant for type safety
1 parent fc5b392 commit f7899e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const ORDERDOT = '_';
4646
* @readonly
4747
* @type {String}
4848
*/
49-
export const FIRST = "$$FIRST";
49+
export const FIRST = "$$FIRST" as const;
5050

5151
/**
5252
* Key used to specify a limit on the number of results. If this key is present, the value is used.<br/>

0 commit comments

Comments
 (0)