@material-ui/core
Version:
React components that implement Google's Material Design.
8 lines (6 loc) • 402 B
TypeScript
export function capitalize(str: string): string;
export function contains<O1 extends O2, O2>(obj: O1, pred: O2): boolean;
export function findIndex(arr: any[], pred: any): number;
export function find<T>(arr: T[], pred: any): T;
export function createChainedFunction(...funcs: ChainedFunction[]): (...args: any[]) => never;
export type ChainedFunction = ((...args: any[]) => void) | undefined | null;