signal-desktop/ts/shims/Whisper.ts
2019-10-17 14:22:07 -04:00

18 lines
413 B
TypeScript

export function getSearchResultsProps(attributes: any) {
// @ts-ignore
const model = new window.Whisper.Message(attributes);
return model.getPropsForSearchResult();
}
export function getBubbleProps(attributes: any) {
// @ts-ignore
const model = new window.Whisper.Message(attributes);
return model.getPropsForBubble();
}
export function showSettings() {
// @ts-ignore
window.showSettings();
}