harmony/src/utils/index.ts

4 lines
178 B
TypeScript

export { default as getChannelByType } from './getChannelByType.ts'
export type AnyFunction<ReturnType = any> = (...args: any[]) => ReturnType
export { delay } from './delay.ts'