UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

6 lines (4 loc) 185 B
export type ChainedFunction = ((...args: any[]) => void) | undefined | null; export default function createChainedFunction( ...funcs: ChainedFunction[] ): (...args: any[]) => never;