SourceTermAnalysisSystem_vue/node_modules/@antv/x6-common/lib/function/function.d.ts
2026-05-15 10:22:44 +08:00

5 lines
316 B
TypeScript

export { debounce, throttle } from 'lodash-es';
type Fn = (...args: any[]) => any;
export declare function apply<T extends Fn>(fn: T, ctx: ThisParameterType<T>, args?: Parameters<T>): ReturnType<T>;
export declare function call<T extends Fn>(fn: T, ctx: ThisParameterType<T>, ...args: Parameters<T>): ReturnType<T>;