@@ -37,9 +37,6 @@ declare module "@docusaurus/theme-common" {
37
37
export function isMultiColumnFooterLinks ( ) : any ;
38
38
export const ThemeClassNames : any ;
39
39
export const ErrorCauseBoundary : any ;
40
-
41
- // Export all other members as any
42
- export const [ key : string ] : any ;
43
40
}
44
41
45
42
// Other Docusaurus modules
@@ -86,37 +83,31 @@ declare module "@docusaurus/Head" {
86
83
declare module "@site/src/lib/statsProvider" {
87
84
export function useCommunityStatsContext ( ) : any ;
88
85
export const CommunityStatsProvider : any ;
89
- export const [ key : string ] : any ;
90
86
}
91
87
92
88
declare module "@site/src/lib/utils" {
93
89
export function cn ( ...args : any [ ] ) : string ;
94
- export const [ key : string ] : any ;
95
90
}
96
91
97
92
declare module "@site/src/utils/jsUtils" {
98
93
export function sortBy ( array : any [ ] , key : string ) : any [ ] ;
99
- export const [ key : string ] : any ;
100
94
}
101
95
102
96
declare module "@site/src/services/github" {
103
97
export const githubService : any ;
104
98
export interface GitHubDiscussion {
105
99
[ key : string ] : any ;
106
100
}
107
- export const [ key : string ] : any ;
108
101
}
109
102
110
103
declare module "@site/src/components/ui/button" {
111
104
export const Button : any ;
112
- export const [ key : string ] : any ;
113
105
}
114
106
115
107
declare module "@site/src/database/sponsors" {
116
108
export interface Sponsor {
117
109
[ key : string ] : any ;
118
110
}
119
- export const [ key : string ] : any ;
120
111
}
121
112
122
113
declare module "@site/src/data/users" {
@@ -136,12 +127,10 @@ declare module "@site/src/data/users" {
136
127
[ key : string ] : any ;
137
128
}
138
129
export const sortedUsers : any ;
139
- export const [ key : string ] : any ;
140
130
}
141
131
142
132
// Catch-all for any missing modules
143
133
declare module "*" {
144
134
const content : any ;
145
135
export default content ;
146
- export const [ key : string ] : any ;
147
136
}
0 commit comments