UNPKG

perfetto-protos

Version:

Perfetto protos exposed via protobuf-es for browser and node

29 lines 1.22 kB
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; import type { Message } from "@bufbuild/protobuf"; /** * Describes the file protos/perfetto/metrics/chrome/performance_mark_hashes.proto. */ export declare const file_protos_perfetto_metrics_chrome_performance_mark_hashes: GenFile; /** * The list of Chrome performance mark hashes in trace track events. * Use cases include translating performance mark hashes to site and mark * names by getting this list, and prepending a translation table to the trace. * * @generated from message perfetto.protos.ChromePerformanceMarkHashes */ export type ChromePerformanceMarkHashes = Message<"perfetto.protos.ChromePerformanceMarkHashes"> & { /** * @generated from field: repeated int64 site_hash = 1; */ siteHash: bigint[]; /** * @generated from field: repeated int64 mark_hash = 2; */ markHash: bigint[]; }; /** * Describes the message perfetto.protos.ChromePerformanceMarkHashes. * Use `create(ChromePerformanceMarkHashesSchema)` to create a new message. */ export declare const ChromePerformanceMarkHashesSchema: GenMessage<ChromePerformanceMarkHashes>; //# sourceMappingURL=performance_mark_hashes_pb.d.ts.map