UNPKG

perfetto-protos

Version:

Perfetto protos exposed via protobuf-es for browser and node

40 lines 1.47 kB
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; import type { RectProto } from "../graphics/rect_pb"; import type { Message } from "@bufbuild/protobuf"; /** * Describes the file protos/perfetto/trace/android/app/window_configuration.proto. */ export declare const file_protos_perfetto_trace_android_app_window_configuration: GenFile; /** * Proto representation for WindowConfiguration.java class * * @generated from message perfetto.protos.WindowConfigurationProto */ export type WindowConfigurationProto = Message<"perfetto.protos.WindowConfigurationProto"> & { /** * @generated from field: optional perfetto.protos.RectProto app_bounds = 1; */ appBounds?: RectProto; /** * @generated from field: optional int32 windowing_mode = 2; */ windowingMode: number; /** * @generated from field: optional int32 activity_type = 3; */ activityType: number; /** * @generated from field: optional perfetto.protos.RectProto bounds = 4; */ bounds?: RectProto; /** * @generated from field: optional perfetto.protos.RectProto max_bounds = 5; */ maxBounds?: RectProto; }; /** * Describes the message perfetto.protos.WindowConfigurationProto. * Use `create(WindowConfigurationProtoSchema)` to create a new message. */ export declare const WindowConfigurationProtoSchema: GenMessage<WindowConfigurationProto>; //# sourceMappingURL=window_configuration_pb.d.ts.map