From f452a907f876c5909d548024cbfa71f054fcf08c Mon Sep 17 00:00:00 2001 From: wxiaoguang Date: Wed, 24 Jun 2026 13:06:45 +0800 Subject: [PATCH] clean up --- types.d.ts | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/types.d.ts b/types.d.ts index 4d99b53beb..639bd56ad3 100644 --- a/types.d.ts +++ b/types.d.ts @@ -18,10 +18,6 @@ declare module '*.vue' { import type {DefineComponent} from 'vue'; const component: DefineComponent; export default component; - // Here we declare all exports from vue files so `tsc` or `tsgo` can work for - // non-vue files. To lint .vue files, `vue-tsc` must be used. - export function initDashboardRepoList(): void; - export function initRepositoryActionView(): void; } declare module 'idiomorph' { @@ -69,15 +65,3 @@ declare module 'vue-bar-graph' { labelHeight?: number; }>; } - -declare module '@mcaptcha/vanilla-glue' { - export let INPUT_NAME: string; - export default class Widget { - constructor(options: { - siteKey: { - instanceUrl: URL; - key: string; - }; - }); - } -}