perfetto-protos
Version:
Perfetto protos exposed via protobuf-es for browser and node
49 lines • 1.66 kB
TypeScript
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
import type { Message } from "@bufbuild/protobuf";
/**
* Describes the file protos/perfetto/metrics/chrome/touch_jank.proto.
*/
export declare const file_protos_perfetto_metrics_chrome_touch_jank: GenFile;
/**
* @generated from message perfetto.protos.TouchJank
*/
export type TouchJank = Message<"perfetto.protos.TouchJank"> & {
/**
* The percentage of time we consider janky of the total time spent performing
* touch gestures during the trace. I.E. approximately equal to
* |touch_jank_ms|/|touch_ms|.
*
* @generated from field: optional double touch_jank_percentage = 1;
*/
touchJankPercentage: number;
/**
* @generated from field: optional double touch_ms = 2;
*/
touchMs: number;
/**
* @generated from field: optional double touch_processing_ms = 3;
*/
touchProcessingMs: number;
/**
* @generated from field: optional double touch_jank_processing_ms = 4;
*/
touchJankProcessingMs: number;
/**
* @generated from field: optional int64 num_touch_update_count = 5;
*/
numTouchUpdateCount: bigint;
/**
* @generated from field: optional int64 num_touch_update_jank_count = 6;
*/
numTouchUpdateJankCount: bigint;
/**
* @generated from field: optional double touch_jank_budget_ms = 7;
*/
touchJankBudgetMs: number;
};
/**
* Describes the message perfetto.protos.TouchJank.
* Use `create(TouchJankSchema)` to create a new message.
*/
export declare const TouchJankSchema: GenMessage<TouchJank>;
//# sourceMappingURL=touch_jank_pb.d.ts.map