Skip to content

Commit

Permalink
Fixed type declaration import
Browse files Browse the repository at this point in the history
Closes #41
  • Loading branch information
JohnCampionJr committed Sep 3, 2021
1 parent 6eac430 commit 7e98502
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.4.1] - 2021-09-03

### Fixed

- Accidentally moved type declaration import to wrong place

## [0.4.0] - 2021-09-02

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions client.d.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import type { RouteRecordRaw } from 'vue-router'

/**
* @deprecated
*/
declare module 'layouts-generated' {
import type { RouteRecordRaw } from 'vue-router'
export function setupLayouts(routes: RouteRecordRaw[]): RouteRecordRaw[]
}

declare module 'virtual:generated-layouts' {
import type { RouteRecordRaw } from 'vue-router'
export function setupLayouts(routes: RouteRecordRaw[]): RouteRecordRaw[]
}

0 comments on commit 7e98502

Please sign in to comment.