1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 02:44:45 +00:00

refactor(packages/stdlib): replace type by any function helper

This commit is contained in:
2024-10-24 07:42:30 +07:00
parent 9b5eef04c7
commit 22fc55ce01

View File

@@ -1,4 +1,6 @@
export type Subscriber = (...args: any[]) => void;
import type { AnyFunction } from '../../../types';
export type Subscriber = AnyFunction;
export type EventsRecord = Record<string | symbol, Subscriber>;
/**