Skip to content

Commit aebf62e

Browse files
committed
fix: fix typo
1 parent 30d89ec commit aebf62e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Diff for: src/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as AllIcons from "@ant-design/icons-vue";
2-
import { Options } from "./types";
2+
import type { Options } from "./types";
33
import { allComponents , allImports} from "./antdv";
44

55
export const libraryName = "ant-design-vue";

Diff for: src/core/components.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Options } from "../types";
1+
import type { Options } from "../types";
22
import { iconLibraryName, libraryName, prefix } from "../config"
33
import { addComponent } from "@nuxt/kit";
44

Diff for: src/core/imports.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { addImportsSources } from "@nuxt/kit";
2-
import { Options } from "../types";
2+
import type { Options } from "../types";
33
import { libraryName } from "../config";
44

55
export const resolveImports = (config:Options) => {

Diff for: src/module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineNuxtModule } from '@nuxt/kit'
22
import { libraryName,defaults } from "./config"
33
import { resolveComponents,resolveImports } from "./core"
4-
import { Options } from './types'
4+
import type { Options } from './types'
55
import { resolveOptions } from './core/options'
66

77
export default defineNuxtModule<Partial<Options>>({

0 commit comments

Comments
 (0)