import type { Callable } from '../callable/index.js'; export type ThisParameter_ = [T] extends [ (this: infer This, ...args: any) => any ] ? This : never; export type ThisParameter = ThisParameter_; export type $ThisParameter_ = T extends any ? ThisParameter_ : never; export type $ThisParameter = $ThisParameter_; //# sourceMappingURL=ThisParameter.d.ts.map