代码之家  ›  专栏  ›  技术社区  ›  Tomer Amir

属性“prototype”不存在

  •  4
  • Tomer Amir  · 技术社区  · 6 年前

    我正在尝试使用 jest 和mock ioredis 在typescript中。

    问题是我从 typescript 即:

    tests/__mocks__/ioredis.ts(5,9): error TS2339: Property 'prototype' does not exist on type 'Redis''
    

    代码确实有效,但我想解决这个错误。 这是我的模拟:

    // tests/__mocks__/ioredis.ts
    import { Redis } from 'ioredis';
    
    const IORedis: Redis = jest.genMockFromModule<Redis>('ioredis');
    
    IORedis.prototype.hgetall = jest.fn().mockImplementation(async (key: string) => {
        // Some mock implementation
    });
    
    module.exports = IORedis;
    

    我做错了什么?

    2 回复  |  直到 6 年前
        1
  •  3
  •   kimy82    6 年前

    没有完美的解决方案。

    首先使用prototype属性定义intereface:

    interface IPrototype { prototype: any; }
    

    使用 IORedis公司 这样就可以访问prototype和ohter Redis方法。

    (IORedis as IPrototype & Redis).prototype ...
    

    另一种选择 可以这样声明您的常量:

    interface IPrototype { prototype: any; }
    type MyRedis = Redis & IPrototype;
    const IORedis: MyRedis = jest.genMockFromModule<MyRedis>('ioredis');
    

    希望有帮助!

        2
  •  1
  •   Adverbly    6 年前

    如果需要扩展的类型是泛型的,则可以在创建联合类型时使用类型变量。

    interface IPrototype { prototype: any; }
    type ExtendedType<A, B> = IPrototype & BasicType<A, B>;
    

    然后您可以使用

    (myvar as ExtendedType<any, any>).prototype