Skip to content

Commit 9da7a7a

Browse files
committed
fix: blog post og image component failing test:types
1 parent 68d8e7f commit 9da7a7a

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// This type declaration file is required to break a circular type resolution in vue-tsc.
2+
// And is based off Package.d.vue.ts
3+
4+
import type { DefineComponent } from 'vue'
5+
6+
declare const _default: DefineComponent<{
7+
title: string
8+
authors?: { name: string; blueskyHandle?: string }[]
9+
date?: string
10+
primaryColor?: string
11+
}>
12+
13+
export default _default

0 commit comments

Comments
 (0)