修正 UnknownFunction 的導出

This commit is contained in:
CrescentLeaf
2025-08-16 15:32:58 +08:00
parent 33033d3504
commit f33f11fc63

View File

@@ -1 +1,3 @@
export type UnknownFunction = (...args: unknown[]) => unknown
type UnknownFunction = (...args: unknown[]) => unknown
export default UnknownFunction