From 6dd52cf95f554c60ee777191fe127d06ddd269fa Mon Sep 17 00:00:00 2001 From: Lijd TheGrandfatherofGitLab Date: Wed, 15 May 2024 02:33:32 +0000 Subject: [PATCH] fix: incorrect property name (`cellphone`) in type definition --- interface.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interface.d.ts b/interface.d.ts index 5f3f0be..8f6cfbc 100644 --- a/interface.d.ts +++ b/interface.d.ts @@ -271,20 +271,20 @@ export function batch( ): Promise export function captcha_sent( - params: { cellphone: string; ctcode?: number | string } & RequestBaseConfig, + params: { phone: string; ctcode?: number | string } & RequestBaseConfig, ): Promise export function captcha_verify( params: { ctcode?: number | string - cellphone: number | string + phone: number | string captcha: string } & RequestBaseConfig, ): Promise export function cellphone_existence_check( params: { - cellphone: number | string + phone: number | string countrycode: number | string } & RequestBaseConfig, ): Promise