diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f13195..7b7433f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/client.d.ts b/client.d.ts index 2cc78f3..3ee1a0d 100644 --- a/client.d.ts +++ b/client.d.ts @@ -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[] }