mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
// Type definitions for React v0.14 (react-addons-perf)
|
|
// Project: http://facebook.github.io/react/
|
|
// Definitions by: Asana <https://asana.com>, AssureSign <http://www.assuresign.com>, Microsoft <https://microsoft.com>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="react.d.ts" />
|
|
|
|
declare namespace __React {
|
|
interface ComponentPerfContext {
|
|
current: string;
|
|
owner: string;
|
|
}
|
|
|
|
interface NumericPerfContext {
|
|
[key: string]: number;
|
|
}
|
|
|
|
interface Measurements {
|
|
exclusive: NumericPerfContext;
|
|
inclusive: NumericPerfContext;
|
|
render: NumericPerfContext;
|
|
counts: NumericPerfContext;
|
|
writes: NumericPerfContext;
|
|
displayNames: {
|
|
[key: string]: ComponentPerfContext;
|
|
};
|
|
totalTime: number;
|
|
}
|
|
|
|
namespace __Addons {
|
|
namespace Perf {
|
|
export function start(): void;
|
|
export function stop(): void;
|
|
export function printInclusive(measurements: Measurements[]): void;
|
|
export function printExclusive(measurements: Measurements[]): void;
|
|
export function printWasted(measurements: Measurements[]): void;
|
|
export function printDOM(measurements: Measurements[]): void;
|
|
export function getLastMeasurements(): Measurements[];
|
|
}
|
|
}
|
|
}
|
|
|
|
declare module "react-addons-perf" {
|
|
import Perf = __React.__Addons.Perf;
|
|
export = Perf;
|
|
}
|