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

8 lines
395 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;
type ChainedFunction = ((...args: any[]) => void) | undefined | null;