UNPKG

perfetto-protos

Version:

Perfetto protos exposed via protobuf-es for browser and node

30 lines 1.2 kB
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; import type { EtwTraceEvent } from "./etw_event_pb"; import type { Message } from "@bufbuild/protobuf"; /** * Describes the file protos/perfetto/trace/etw/etw_event_bundle.proto. */ export declare const file_protos_perfetto_trace_etw_etw_event_bundle: GenFile; /** * The result of tracing one or more etw event uses per-processor buffers where * an in-use buffer is assigned to each processor at all times. Therefore, * collecting multiple events they should already be synchronized. * * @generated from message perfetto.protos.EtwTraceEventBundle */ export type EtwTraceEventBundle = Message<"perfetto.protos.EtwTraceEventBundle"> & { /** * @generated from field: optional uint32 cpu = 1; */ cpu: number; /** * @generated from field: repeated perfetto.protos.EtwTraceEvent event = 2; */ event: EtwTraceEvent[]; }; /** * Describes the message perfetto.protos.EtwTraceEventBundle. * Use `create(EtwTraceEventBundleSchema)` to create a new message. */ export declare const EtwTraceEventBundleSchema: GenMessage<EtwTraceEventBundle>; //# sourceMappingURL=etw_event_bundle_pb.d.ts.map