harmony/src/utils/index.ts

3 lines
177 B
TypeScript

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