noop.d.ts 236 B

123456789101112
  1. /**
  2. * 一个空的方法,始终返回 undefined,可用于初始化值
  3. */
  4. export declare function noop(...args: any[]): void;
  5. declare module './ctor' {
  6. interface XEUtilsMethods {
  7. noop: typeof noop;
  8. }
  9. }
  10. export default noop