// // Copyright 2022 DXOS.org // import { type TaggedType } from '@dxos/codec-protobuf'; import { type TYPES } from '@dxos/protocols/proto'; export const PAYLOAD_1: TaggedType = { '@type': 'google.protobuf.Any', 'type_url': 'dxos.Example1', 'value': Buffer.from('1'), }; export const PAYLOAD_2: TaggedType = { '@type': 'google.protobuf.Any', 'type_url': 'dxos.Example2', 'value': Buffer.from('2'), }; export const PAYLOAD_3: TaggedType = { '@type': 'google.protobuf.Any', 'type_url': 'dxos.Example3', 'value': Buffer.from('3'), };