From ea0d0db8e5a31ab6c7d21c8d048b64ef2579eb59 Mon Sep 17 00:00:00 2001 From: Chang Date: Fri, 13 Sep 2024 11:15:49 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=20AnyObject=20?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E5=AF=BC=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/types.ts b/src/types.ts index 50adf3f..8f8c5ca 100644 --- a/src/types.ts +++ b/src/types.ts @@ -12,3 +12,10 @@ export type Arrayable = T | Array * Function */ export type Fn = () => T + +/** + * AnyObject + */ +export interface AnyObject { + [key: string]: any +}