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

16 lines
466 B
TypeScript
Raw Normal View History

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