mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 17:43:30 +01:00
5 lines
137 B
TypeScript
5 lines
137 B
TypeScript
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
export const noop = () => {};
|
|
|
|
export type Awaited<T> = T | Promise<T>;
|