We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95c9dcf commit bb12b15Copy full SHA for bb12b15
src/type.d.ts
@@ -1,3 +1,24 @@
1
+import { IntegrationUserConfig as BaseIntegrationUserConfig } from 'astro-pure/types'
2
+
3
+declare module 'astro-pure/types' {
4
+ interface GiscusConfig {
5
+ enable: boolean
6
+ repo: string
7
+ repoId: string
8
+ category: string
9
+ categoryId: string
10
+ mapping: string
11
+ reactionsEnabled: string
12
+ emitMetadata: string
13
+ inputPosition: string
14
+ lang: string
15
+ }
16
17
+ interface IntegrationUserConfig extends BaseIntegrationUserConfig {
18
+ giscus?: GiscusConfig
19
20
+}
21
22
declare module 'virtual:config' {
23
const Config: import('astro-pure/types').ConfigOutput
24
export default Config
0 commit comments