summaryrefslogtreecommitdiffstats
path: root/src/shims-vue.d.ts
blob: e22ed2261bf2deeeb8eaabe11316b480bcc85a59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * Initially copied from typescript+vue2 project generated by @vue/cli-plugin v5.0.0
 */
declare module '*.vue' {
  import Vue from 'vue';
  export default Vue;
};

// Necessary for All Nextcloud Vue components
declare module '@nextcloud/vue/dist/Components/*' {

};

// Necessary to access translate in typescript components
function t(app, key): string { }