延长打字噩梦
extend typing for nightmare
我正在使用来自 here 的 nightmare
class 的打字。这是通过 npm install @types/nightmare
安装
我想在不修改 node_modules 的 index.d.ts 的情况下扩展现有类型。特别是通过添加 action()
和 evaluate_now()
方法。
action()
是静态方法。
这是我做的
我在我的项目根文件夹中创建了一个自定义类型文件
自定义-typings.d.ts
declare namespace Nightmare {
export class Nightmare {
evaluate_now<T1, T2, R>(
fn: (arg1: T1, done: T2) => R,
done: T2,
arg1: T1
): Nightmare;
static action<T1, T2, R>(name: string, fn: (arg1: T1, done: T2) => R): void;
}
}
在我的主应用程序文件中,我有以下内容
index.ts
/// <reference path='custom-typings.d.ts'/>
import Nightmare = require('nightmare');
function size(this: Nightmare, done: any) {
this.evaluate_now(() => {
const w = Math.max(
document.documentElement.clientWidth,
window.innerWidth || 0
);
const h = Math.max(
document.documentElement.clientHeight,
window.innerHeight || 0
);
return {
height: h,
width: w
};
}, done);
}
Nightmare.action('size', size);
// no errors here from the types declared by the @types in node_modules.
new Nightmare()
.goto('http://yahoo.com')
.type('input[title="Search"]', 'github nightmare')
.click('.searchsubmit');
我收到以下错误
- 属性 'evaluate_now' 在类型 'Nightmare' 上不存在。
- 属性 'action' 在类型 'typeof Nightmare' 上不存在。
我正在使用 Typescript 3。看起来我的自定义类型没有被检测到。我一直在倾注 declaration merging documents,但我不知道我做错了什么。
谢谢
您在custom-typings.d.ts
中声明的全局命名空间与模块无关。相反,您需要扩充模块:
declare module "dummy" {
module "nightmare" {
// ...
}
}
但是,Nightmare
class 在原始类型 (export = Nightmare
) 中是导出分配的,AFAIK 导出分配的 classes 目前不能增强;参见 this previous answer。因此,您必须将 @types/nightmare
的修改副本添加到您的项目中。
我正在使用来自 here 的 nightmare
class 的打字。这是通过 npm install @types/nightmare
我想在不修改 node_modules 的 index.d.ts 的情况下扩展现有类型。特别是通过添加 action()
和 evaluate_now()
方法。
action()
是静态方法。
这是我做的 我在我的项目根文件夹中创建了一个自定义类型文件
自定义-typings.d.ts
declare namespace Nightmare {
export class Nightmare {
evaluate_now<T1, T2, R>(
fn: (arg1: T1, done: T2) => R,
done: T2,
arg1: T1
): Nightmare;
static action<T1, T2, R>(name: string, fn: (arg1: T1, done: T2) => R): void;
}
}
在我的主应用程序文件中,我有以下内容
index.ts
/// <reference path='custom-typings.d.ts'/>
import Nightmare = require('nightmare');
function size(this: Nightmare, done: any) {
this.evaluate_now(() => {
const w = Math.max(
document.documentElement.clientWidth,
window.innerWidth || 0
);
const h = Math.max(
document.documentElement.clientHeight,
window.innerHeight || 0
);
return {
height: h,
width: w
};
}, done);
}
Nightmare.action('size', size);
// no errors here from the types declared by the @types in node_modules.
new Nightmare()
.goto('http://yahoo.com')
.type('input[title="Search"]', 'github nightmare')
.click('.searchsubmit');
我收到以下错误
- 属性 'evaluate_now' 在类型 'Nightmare' 上不存在。
- 属性 'action' 在类型 'typeof Nightmare' 上不存在。
我正在使用 Typescript 3。看起来我的自定义类型没有被检测到。我一直在倾注 declaration merging documents,但我不知道我做错了什么。
谢谢
您在custom-typings.d.ts
中声明的全局命名空间与模块无关。相反,您需要扩充模块:
declare module "dummy" {
module "nightmare" {
// ...
}
}
但是,Nightmare
class 在原始类型 (export = Nightmare
) 中是导出分配的,AFAIK 导出分配的 classes 目前不能增强;参见 this previous answer。因此,您必须将 @types/nightmare
的修改副本添加到您的项目中。