feat: 为 tabbar 的 pagePath 添加明确的联合类型
This commit is contained in:
@@ -13,3 +13,9 @@ export interface IUniUploadFileOptions {
|
||||
name?: string
|
||||
formData?: any
|
||||
}
|
||||
|
||||
/** 工具类型:删除字符串开头的第一个斜杠 */
|
||||
export type RemoveLeadingSlash<S extends string> = S extends `/${infer Rest}` ? Rest : S
|
||||
|
||||
/** 工具类型:删除联合类型中每个字符串的第一个斜杠 */
|
||||
export type RemoveLeadingSlashFromUnion<T extends string> = T extends any ? RemoveLeadingSlash<T> : never
|
||||
|
||||
Reference in New Issue
Block a user