signal-desktop/js/modules/stickers.d.ts

16 lines
391 B
TypeScript
Raw Normal View History

export function maybeDeletePack(packId: string): Promise<void>;
export function downloadStickerPack(
packId: string,
packKey: string,
options?: {
finalStatus?: 'installed' | 'downloaded';
messageId?: string;
fromSync?: boolean;
}
): Promise<void>;
2020-08-26 22:16:59 +00:00
export function isPackIdValid(packId: unknown): packId is string;
export function redactPackId(packId: string): string;