15 lines
391 B
TypeScript
15 lines
391 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>;
|
|
|
|
export function isPackIdValid(packId: unknown): packId is string;
|
|
|
|
export function redactPackId(packId: string): string;
|