be5d0837f8
Co-authored-by: scott@signal.org Co-authored-by: ken@signal.org
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
export function maybeDeletePack(packId: string): Promise<void>;
|
|
|
|
export function downloadStickerPack(
|
|
packId: string,
|
|
packKey: string,
|
|
options?: {
|
|
finalStatus?: 'installed' | 'downloaded';
|
|
messageId?: string;
|
|
fromSync?: boolean;
|
|
}
|
|
): Promise<void>;
|