mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
chore: fix type
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
import type { Ref } from 'vue'
|
||||
|
||||
import { useBewlyApp } from '~/composables/useAppProvider'
|
||||
import type { GridLayout } from '~/logic'
|
||||
import type { GridLayoutType } from '~/logic'
|
||||
import type { DataItem as MomentItem, MomentResult } from '~/models/moment/moment'
|
||||
import api from '~/utils/api'
|
||||
|
||||
@@ -13,7 +13,7 @@ interface VideoElement {
|
||||
}
|
||||
|
||||
const props = defineProps<{
|
||||
gridLayout: GridLayout
|
||||
gridLayout: GridLayoutType
|
||||
}>()
|
||||
|
||||
const emit = defineEmits<{
|
||||
|
||||
@@ -5,7 +5,7 @@ import type { Ref } from 'vue'
|
||||
import { useBewlyApp } from '~/composables/useAppProvider'
|
||||
import { FilterType, useFilter } from '~/composables/useFilter'
|
||||
import { LanguageType } from '~/enums/appEnums'
|
||||
import type { GridLayout } from '~/logic'
|
||||
import type { GridLayoutType } from '~/logic'
|
||||
import { accessKey, settings } from '~/logic'
|
||||
import type { AppForYouResult, Item as AppVideoItem } from '~/models/video/appForYou'
|
||||
import { Type as ThreePointV2Type } from '~/models/video/appForYou'
|
||||
@@ -15,7 +15,7 @@ import { TVAppKey } from '~/utils/authProvider'
|
||||
import { isVerticalVideo } from '~/utils/uriParse'
|
||||
|
||||
const props = defineProps<{
|
||||
gridLayout: GridLayout
|
||||
gridLayout: GridLayoutType
|
||||
}>()
|
||||
|
||||
const emit = defineEmits<{
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
import type { Ref } from 'vue'
|
||||
|
||||
import { useBewlyApp } from '~/composables/useAppProvider'
|
||||
import type { GridLayout } from '~/logic'
|
||||
import type { GridLayoutType } from '~/logic'
|
||||
import type { DataItem as MomentItem, MomentResult } from '~/models/moment/moment'
|
||||
import api from '~/utils/api'
|
||||
|
||||
@@ -13,7 +13,7 @@ interface VideoElement {
|
||||
}
|
||||
|
||||
const props = defineProps<{
|
||||
gridLayout: GridLayout
|
||||
gridLayout: GridLayoutType
|
||||
}>()
|
||||
|
||||
const emit = defineEmits<{
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
import type { Ref } from 'vue'
|
||||
|
||||
import { useBewlyApp } from '~/composables/useAppProvider'
|
||||
import type { GridLayout } from '~/logic'
|
||||
import type { GridLayoutType } from '~/logic'
|
||||
import type { List as VideoItem, TrendingResult } from '~/models/video/trending'
|
||||
import api from '~/utils/api'
|
||||
|
||||
@@ -13,7 +13,7 @@ interface VideoElement {
|
||||
}
|
||||
|
||||
const props = defineProps<{
|
||||
gridLayout: GridLayout
|
||||
gridLayout: GridLayoutType
|
||||
}>()
|
||||
|
||||
const emit = defineEmits<{
|
||||
|
||||
Reference in New Issue
Block a user