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

feat(packages/stdlib): add AnyFunction type

This commit is contained in:
2024-10-06 06:46:13 +07:00
parent e84187fa02
commit e41c78cd1d
2 changed files with 6 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
/**
* Any function
*/
export type AnyFunction = (...args: any[]) => any;

View File

@@ -1 +1,2 @@
export * from './string';
export * from './string';
export * from './functions';