signal-desktop/ts/protobuf/index.ts

13 lines
300 B
TypeScript
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2018-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2021-07-02 19:21:24 +00:00
import * as protobuf from 'protobufjs/minimal';
import Long from 'long';
2018-05-07 23:08:43 +00:00
import { signalservice as SignalService } from './compiled';
2018-05-07 18:15:06 +00:00
2021-07-02 19:21:24 +00:00
protobuf.util.Long = Long;
protobuf.configure();
2018-05-07 18:15:06 +00:00
export { SignalService };