Blame view

天文台pc/tianwentai-ui/node_modules/@mui/utils/esm/createChainedFunction/createChainedFunction.d.ts 301 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
  /**
   * Safe chained function.
   *
   * Will only create a new function if needed,
   * otherwise will pass back existing functions or null.
   */
  export default function createChainedFunction<Args extends any[], This>(...funcs: Array<(this: This, ...args: Args) => any>): (this: This, ...args: Args) => void;