Files
number_zj/20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/noop.d.ts
毛财君 197b38ca6f 1
2023-07-06 17:37:33 +08:00

12 lines
236 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 一个空的方法,始终返回 undefined可用于初始化值
*/
export declare function noop(...args: any[]): void;
declare module './ctor' {
interface XEUtilsMethods {
noop: typeof noop;
}
}
export default noop