summaryrefslogtreecommitdiffstats
path: root/src/shims-vue.d.ts
blob: 45931a53d32b435dd42cab2a9c9aac5669507c86 (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, params?): string { }