Files
goTorrent/torrent-project/node_modules/material-ui/utils/helpers.d.ts

8 lines
321 B
TypeScript

export function capitalizeFirstLetter(str: string): string;
export function contains(obj: Object, pred: Object): boolean;
export function findIndex(arr: any[], pred: any): number;
export function find<T>(arr: T[], pred: any): T;
export function createChainedFunction(
...funcs: Function[]
): (...args: any[]) => never;