Completely updated React, fixed #11, (hopefully)
This commit is contained in:
10
goTorrentWebUI/node_modules/material-ui/utils/helpers.d.ts
generated
vendored
10
goTorrentWebUI/node_modules/material-ui/utils/helpers.d.ts
generated
vendored
@@ -1,7 +1,7 @@
|
||||
export function capitalizeFirstLetter(str: string): string;
|
||||
export function contains(obj: Object, pred: Object): boolean;
|
||||
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: Function[]
|
||||
): (...args: any[]) => never;
|
||||
export function createChainedFunction(...funcs: ChainedFunction[]): (...args: any[]) => never;
|
||||
|
||||
type ChainedFunction = ((...args: any[]) => void) | undefined | null;
|
||||
|
Reference in New Issue
Block a user