我目前正在学习TypeScript并尝试定义自己的类型。我目前正在使用.d.ts文件声明我的类型。
我创建了文件./src/typings/git-types.d.ts
:
declare module "git-types" {
export interface GitRepoListItem {
repoName: string;
repoPath: string;
}
export interface GitReturnObject {
value: any;
errorCode: GitErrorCode;
}
export enum GitErrorCode {
UnknownError = 1,
GitNotFound = 2,
NoValidPathGiven = 3,
LocalChangesPreventCheckout = 4,
LocalChangesPreventPull = 5
}
export interface GitCommit {
hash: string;
author: string;
commitDate: string;
commitTime: string;
commitMessage: string;
}
}
现在,我尝试导入此模块,以便在另一个文件CommitHistory.ts
中使用我的类型:
import { GitCommit } from "git-types";
class CommitHistory {
commitList: GitCommit[] = [];
...
}
但是当我尝试运行我的代码时,编译器失败,并给我以下错误:
Module not found: Can't resolve 'git-types' in './src/CommitHistory.ts
您可以在我的tsconfig.json
文件中看到整个“ src”文件夹:
{
"compilerOptions": {
"target": "es6",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"experimentalDecorators": true
},
"include": ["src"]
}
我必须如何声明模块才能使用我的类型?
答案 0 :(得分:1)
在src/typings/git-types.d.ts
中,无需编写declare module "git-types"
。只需导出您的类型:
// src/typings/git-types.d.ts
export interface GitRepoListItem {
repoName: string;
repoPath: string;
}
// …
然后,可以使用相对路径导入以下类型:
// src/CommitHistory.ts
import { GitCommit } from "./typings/git-types";
如果您安装了一个仅包含JavaScript代码的真实npm软件包git-types
,并且希望自己提供类型,那么您的代码就可以正常工作了。