UNPKG

ts-type

Version:

TypeScript 類型工具庫:提供豐富的類型操作工具和重新導出的內建類型 / TypeScript type utility library: provides rich type manipulation utilities and re-exported built-in types

9 lines (8 loc) 262 B
/** * Created by user on 2019/6/11. */ /** * 覆寫函數的 this 類型 * Overwrite the this type of a function */ export type ITSOverwriteThisFunction<T extends any, F extends (...args: any[]) => any> = (this: T, ...args: Parameters<F>) => ReturnType<F>;