UNPKG

perfetto-protos

Version:

Perfetto protos exposed via protobuf-es for browser and node

63 lines 1.9 kB
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; import type { Message } from "@bufbuild/protobuf"; /** * Describes the file protos/perfetto/metrics/android/anr_metric.proto. */ export declare const file_protos_perfetto_metrics_android_anr_metric: GenFile; /** * @generated from message perfetto.protos.AndroidAnrMetric */ export type AndroidAnrMetric = Message<"perfetto.protos.AndroidAnrMetric"> & { /** * @generated from field: repeated perfetto.protos.AndroidAnrMetric.Anr anr = 1; */ anr: AndroidAnrMetric_Anr[]; }; /** * Describes the message perfetto.protos.AndroidAnrMetric. * Use `create(AndroidAnrMetricSchema)` to create a new message. */ export declare const AndroidAnrMetricSchema: GenMessage<AndroidAnrMetric>; /** * Next id: 12 * * @generated from message perfetto.protos.AndroidAnrMetric.Anr */ export type AndroidAnrMetric_Anr = Message<"perfetto.protos.AndroidAnrMetric.Anr"> & { /** * UUID that identifies the ANR. * * @generated from field: optional string error_id = 1; */ errorId: string; /** * Name of the process that ANRed. * * @generated from field: optional string process_name = 2; */ processName: string; /** * PID of the ANRing process. * * @generated from field: optional int32 pid = 3; */ pid: number; /** * ANR subject line. * * @generated from field: optional string subject = 4; */ subject: string; /** * Timestamp of the ANR in the trace. * * @generated from field: optional int64 ts = 5; */ ts: bigint; }; /** * Describes the message perfetto.protos.AndroidAnrMetric.Anr. * Use `create(AndroidAnrMetric_AnrSchema)` to create a new message. */ export declare const AndroidAnrMetric_AnrSchema: GenMessage<AndroidAnrMetric_Anr>; //# sourceMappingURL=anr_metric_pb.d.ts.map