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
@@ -0,0 +1,4 @@
/**
* Any function
*/
export type AnyFunction = (...args: any[]) => any;
+2 -1
View File
@@ -1 +1,2 @@
export * from './string';
export * from './string';
export * from './functions';