From 509d3584696da213ada89c95ab21427948bde92d Mon Sep 17 00:00:00 2001 From: Rui Wu Date: Fri, 24 May 2024 10:12:22 +0800 Subject: [PATCH] fix: lint --- src/types.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/types.ts b/src/types.ts index aa0472b..568e3ea 100644 --- a/src/types.ts +++ b/src/types.ts @@ -3,13 +3,13 @@ import type { builtInPlatforms } from './_constant' export type BuiltInPlatForm = typeof builtInPlatforms[number] export type UtsPlatform = BuiltInPlatForm -| 'app-android' -| 'app-ios' -| 'web' + | 'app-android' + | 'app-ios' + | 'web' export type AppPlatform = 'android' -| 'ios' -| undefined + | 'ios' + | undefined export type SubPlatform = - 'quickapp-webview-huawei' - | 'quickapp-webview-union' - | undefined + 'quickapp-webview-huawei' + | 'quickapp-webview-union' + | undefined