Fix sticker creator after CDN and typescript changes

This commit is contained in:
Scott Nonnenberg 2020-04-27 13:35:14 -07:00
parent 3966d55d3b
commit 896dfcb43f
2 changed files with 7 additions and 2 deletions

2
ts/textsecure.d.ts vendored
View file

@ -4,6 +4,7 @@ import {
SignedPreKeyType,
StorageType,
} from './libsignal.d';
import Crypto from './textsecure/Crypto';
import MessageReceiver from './textsecure/MessageReceiver';
import EventTarget from './textsecure/EventTarget';
import { ByteBufferClass } from './window.d';
@ -28,6 +29,7 @@ export type TextSecureType = {
id?: string,
options?: { timeout?: number }
) => () => Promise<any>;
crypto: typeof Crypto;
storage: {
user: {
getNumber: () => string;