我的编辑器为声明类型为MyInterface<T>的参数的index.js代码提供了一个TypeScript错误,即Type 'T' does not satisfy the constraint '{如何指定接受约束JSDoc TypeScript中对象的泛型参数?// index.d.ts b: string;
我定义了一个接受几个参数的函数:第一个参数将是一个字符串,但后面两个参数总是整数。我需要构造下面的for循环。for x in range(0, arg2 / 2):TypeError: 'float' object cannot be interpreted如何指定应将arg2视为整数,或者如何将其重新解释为整数?