Skip to content

Commit 806c3be

Browse files
committed
fix: types
1 parent 4600d24 commit 806c3be

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/design-system/src/components/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export { default as OcColorInput } from './OcColorInput/OcColorInput.vue'
1616
export { default as OcContextualHelper } from './OcContextualHelper/OcContextualHelper.vue'
1717
export { default as OcDatepicker } from './OcDatepicker/OcDatepicker.vue'
1818
export { default as OcDefinitionList } from './OcDefinitionList/OcDefinitionList.vue'
19-
export { default as OcDrop } from './OcDrop/OcDrop.vue'
19+
export { default as OcDrop, type Props as OcDropProps, type Slots as OcDropSlots } from './OcDrop/OcDrop.vue'
2020
export { default as OcDropzone } from './OcDropzone/OcDropzone.vue'
2121
export { default as OcFileInput } from './OcFileInput/OcFileInput.vue'
2222
export { default as OcFilterChip } from './OcFilterChip/OcFilterChip.vue'

packages/web-pkg/src/composables/piniaStores/avatars.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const useAvatarsStore = defineStore('avatars', () => {
99
const avatarMap = ref<Record<string, string>>({})
1010
const avatarsQueue = markRaw(
1111
new PQueue({ concurrency: configStore.options.concurrentRequests.avatars })
12-
)
12+
) as { add: PQueue['add'] }
1313
const pendingAvatarsRequests = new Map<string, Promise<any>>()
1414

1515
const addAvatar = (userId: string, avatar: string) => {

0 commit comments

Comments
 (0)