UNPKG

perfetto-protos

Version:

Perfetto protos exposed via protobuf-es for browser and node

31 lines 1.45 kB
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; import type { AndroidAppProcessStartsMetric } from "./app_process_starts_metric_pb"; import type { AndroidGarbageCollectionUnaggMetric } from "./android_garbage_collection_unagg_metric_pb"; import type { Message } from "@bufbuild/protobuf"; /** * Describes the file protos/perfetto/metrics/android/android_boot_unagg.proto. */ export declare const file_protos_perfetto_metrics_android_android_boot_unagg: GenFile; /** * @generated from message perfetto.protos.AndroidBootUnagg */ export type AndroidBootUnagg = Message<"perfetto.protos.AndroidBootUnagg"> & { /** * Looks at all apps started after boot complete broadcast. * * @generated from field: optional perfetto.protos.AndroidAppProcessStartsMetric android_app_process_start_metric = 1; */ androidAppProcessStartMetric?: AndroidAppProcessStartsMetric; /** * Looks at all GC that occurs after boot complete broadcast. * * @generated from field: optional perfetto.protos.AndroidGarbageCollectionUnaggMetric android_post_boot_gc_metric = 2; */ androidPostBootGcMetric?: AndroidGarbageCollectionUnaggMetric; }; /** * Describes the message perfetto.protos.AndroidBootUnagg. * Use `create(AndroidBootUnaggSchema)` to create a new message. */ export declare const AndroidBootUnaggSchema: GenMessage<AndroidBootUnagg>; //# sourceMappingURL=android_boot_unagg_pb.d.ts.map