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.

15 lines
501 B

4 years ago
4 years ago
4 years ago
4 years ago
  1. /*
  2. this is a defintion typescript file
  3. unvalid for eslint, ie: --ignore-pattern \"*.d.ts\" in package.json
  4. */
  5. declare module "*.vue" {
  6. import { defineComponent } from "vue"
  7. const Component: ReturnType<typeof defineComponent>
  8. export default Component
  9. }
  10. /* declare const which helps leveraging visibility of defined constants, loaded from `main.ts` file */
  11. declare const APP_VERSION: string
  12. declare const APP_TITLE: string
  13. declare const APP_REPOSITORY: string
  14. declare const APP_LICENSE: string