UNPKG

ant-design-vue

Version:

An enterprise-class UI design language and Vue-based implementation

10 lines (9 loc) 249 B
/** * Safe chained function * * Will only create a new function if needed, * otherwise will pass back existing functions or null. * * @returns {function|null} */ export default function createChainedFunction(...args: any[]): Function | null;