From 34f8c298b009481e704fadd330b7055b89a15431 Mon Sep 17 00:00:00 2001 From: Priyam Date: Thu, 10 Feb 2022 10:53:50 +0530 Subject: [PATCH] chore: update `README.md` to reflect type for import (#297) --- src/modules/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/README.md b/src/modules/README.md index adda9ef..ccb7340 100644 --- a/src/modules/README.md +++ b/src/modules/README.md @@ -3,7 +3,7 @@ A custom user module system. Place a `.ts` file with the following template, it will be installed automatically. ```ts -import { UserModule } from '~/types' +import type { UserModule } from '~/types' export const install: UserModule = ({ app, router, isClient }) => { // do something