Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
305 B

  1. import Vue, { VNode } from 'vue';
  2. declare global {
  3. namespace JSX {
  4. // tslint:disable no-empty-interface
  5. interface Element extends VNode {}
  6. // tslint:disable no-empty-interface
  7. interface ElementClass extends Vue {}
  8. interface IntrinsicElements {
  9. [elem: string]: any;
  10. }
  11. }
  12. }