mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-27 19:39:52 +00:00
7 lines
297 B
TypeScript
7 lines
297 B
TypeScript
/**
|
|
* Exports a noop that can be used in place of Ember.K which is currently deprecated.
|
|
*/
|
|
// Note, the very nature of noop is to be of any typing because it's noop.
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
export const noop: (...args: Array<any>) => any = (): any => {};
|