chore(Button): str type (#51521)

Co-authored-by: afc163 <afc163@gmail.com>
This commit is contained in:
OweQian 2024-12-14 23:06:36 +08:00 committed by GitHub
parent 034aa4908f
commit 5c582fcbe2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,7 @@ export function convertLegacyProps(
return { type }; return { type };
} }
export function isString(str: any): str is string { export function isString(str: unknown): str is string {
return typeof str === 'string'; return typeof str === 'string';
} }