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