Skip to content
Snippets Groups Projects
Select Git revision
  • Sprint/2021-22
  • master default protected
  • gitkeep
  • dev protected
  • Issue/1321-pidEnquiryOverhaul
  • czepiel-devops
  • Sprint/2022-01
  • Hotfix/1911-fixFormatting
  • Issue/1743-changedLink
  • Product/1107-frontendPerformance
  • Topic/1227-frontendPerformance
  • Product/1215-gitlabCleanUp
  • Sprint/2020-20
  • Product/943-NewLogo
  • Topic/1087-NewLogo
  • Sprint/2020-19
  • Product/505-pidPage
  • Topic/1061-pidPageApp
  • v1.3.0
  • v1.2.2
  • v1.2.1
  • v1.2.0
  • v1.1.1
  • v1.1.0
  • v1.0.0
25 results

shims-vue.d.ts

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    shims-vue.d.ts 404 B
    declare module '*.vue' {
      import Vue from 'vue';
      export default Vue;
    }
    
    declare module '@coscine/api-connection';
    declare module '@coscine/app-util';
    declare module '@coscine/component-library';
    
    declare module "*.png" {
      const value: any;
      export default value;
    }
    declare module '*.svg' {
      import Vue, {VueConstructor} from 'vue';
      const content: VueConstructor<Vue>;
      export default content;
    }