Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/after.d.ts

16 lines
444 B
TypeScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
/**
* , count
* @param count
* @param callback
* @param context
*/
export declare function after<C = any>(count: number, callback: (this: C, ...args: any[]) => any, context?: C): (this: any,...args: any[]) => any;
declare module './ctor' {
interface XEUtilsMethods {
after: typeof after;
}
}
export default after