This commit is contained in:
wxiaoguang
2026-06-24 13:06:45 +08:00
parent 5c83fc090e
commit f452a907f8

16
types.d.ts vendored
View File

@@ -18,10 +18,6 @@ declare module '*.vue' {
import type {DefineComponent} from 'vue';
const component: DefineComponent<unknown, unknown, any>;
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;
};
});
}
}