wip: init

This commit is contained in:
taskylizard 2025-05-01 20:56:22 +00:00
parent 45d9157281
commit 2606a39f8d
No known key found for this signature in database
GPG key ID: 1820131ED1A24120
10 changed files with 1670 additions and 55 deletions

View file

@ -13,8 +13,38 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* eslint-disable ts/consistent-type-imports */
declare const __VP_HASH_MAP__: Record<string, string>
declare const __VP_LOCAL_SEARCH__: boolean
declare const __ALGOLIA__: boolean
declare const __CARBON__: boolean
declare const __VUE_PROD_DEVTOOLS__: boolean
declare const __ASSETS_DIR__: string
declare module '*.vue' {
const component: import('vue').Component
import type { DefineComponent } from 'vue'
const component: DefineComponent
export default component
}
declare module '@siteData' {
import type { SiteData } from 'vitepress'
const data: SiteData
export default data
}
declare module '@theme/index' {
import type { Theme } from 'vitepress'
const theme: Theme
export default theme
}
declare module '@localSearchIndex' {
const data: Record<string, () => Promise<{ default: string }>>
export default data
}
declare module 'mark.js/src/vanilla.js' {
import type Mark from 'mark.js'
const mark: typeof Mark
export default mark
}