We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71b3133 commit 62e120eCopy full SHA for 62e120e
web_src/js/globals.d.ts
@@ -12,6 +12,11 @@ declare module '*.vue' {
12
import type {DefineComponent} from 'vue';
13
const component: DefineComponent<unknown, unknown, any>;
14
export default component;
15
+ // List of named exports from vue components, used to make `tsc` output clean.
16
+ // To actually lint .vue files, `vue-tsc` is used because `tsc` can not parse them.
17
+ export function initRepoBranchTagSelector(selector: string): void;
18
+ export function initDashboardRepoList(): void;
19
+ export function initRepositoryActionView(): void;
20
}
21
22
declare let __webpack_public_path__: string;
0 commit comments