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; - }; - }); - } -}