Skip to content

Commit f539c80

Browse files
committed
fix(core): remove as const from object events inputs/outputs
1 parent 03bef5f commit f539c80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/core/src/lib/utils/object-events.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class NgtObjectEvents {
4646
}
4747
}
4848

49-
export const NgtObjectEventsInputs = ['ngtObjectEvents'] as const;
49+
export const NgtObjectEventsInputs = ['ngtObjectEvents'];
5050
export const NgtObjectEventsOutputs = [
5151
'click',
5252
'dblclick',
@@ -61,7 +61,7 @@ export const NgtObjectEventsOutputs = [
6161
'pointermissed',
6262
'pointercancel',
6363
'wheel',
64-
] as const;
64+
];
6565

6666
/**
6767
* @deprecated Use NgtObjectEventsInputs and NgtObjectEventsOutputs instead along with NgtObjectEvents

0 commit comments

Comments
 (0)