Minor: fix double import in textsecure.d.ts

This commit is contained in:
Evan Hahn 2020-08-17 13:38:30 -05:00 committed by Josh Perez
parent 49fc466fe7
commit f4c11b2e67

3
ts/textsecure.d.ts vendored
View file

@ -8,10 +8,9 @@ import Crypto from './textsecure/Crypto';
import MessageReceiver from './textsecure/MessageReceiver';
import EventTarget from './textsecure/EventTarget';
import { ByteBufferClass } from './window.d';
import { SendOptionsType } from './textsecure/SendMessage';
import SendMessage, { SendOptionsType } from './textsecure/SendMessage';
import { WebAPIType } from './textsecure/WebAPI';
import utils from './textsecure/Helpers';
import SendMessage from './textsecure/SendMessage';
type AttachmentType = any;