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
|
|
|
|
|
|
|
export function redactPackId(packId: string): string;
|