2020-10-30 15:34:04 -05:00
|
|
|
// Copyright 2019-2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-05-16 15:32:11 -07:00
|
|
|
export function maybeDeletePack(packId: string): Promise<void>;
|
2019-05-23 18:27:42 -07:00
|
|
|
|
|
|
|
export function downloadStickerPack(
|
|
|
|
packId: string,
|
|
|
|
packKey: string,
|
|
|
|
options?: {
|
|
|
|
finalStatus?: 'installed' | 'downloaded';
|
|
|
|
messageId?: string;
|
|
|
|
fromSync?: boolean;
|
|
|
|
}
|
|
|
|
): Promise<void>;
|
2020-03-31 13:03:38 -07:00
|
|
|
|
2020-08-26 17:16:59 -05:00
|
|
|
export function isPackIdValid(packId: unknown): packId is string;
|
|
|
|
|
2020-03-31 13:03:38 -07:00
|
|
|
export function redactPackId(packId: string): string;
|