Skip to content
Snippets Groups Projects
Select Git revision
  • 773956115af5e201b7069b2afad5b1d0f054d7c8
  • main default protected
  • alazar_issues
  • atsaverage_extra
  • spectrometer/alazar_driver
  • v2025.7.1 protected
  • v2025.3.1 protected
  • v2024.11.1 protected
  • v2024.9.19-rc1 protected
  • v2024.7.1 protected
  • v2023.7.1 protected
  • v2023.6.1 protected
12 results

core.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    shims-tsx.d.ts 306 B
    import Vue, { VNode } from 'vue';
    
    declare global {
      namespace JSX {
        // tslint:disable no-empty-interface
        interface Element extends VNode {}
        // tslint:disable no-empty-interface
        interface ElementClass extends Vue {}
        interface IntrinsicElements {
          [elem: string]: any;
        }
      }
    }