mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-23 09:58:12 +01:00
Normalize message attachments
This commit is contained in:
@@ -113,6 +113,9 @@ export type JSONWithUnknownFields<Value> =
|
||||
export type WithRequiredProperties<T, P extends keyof T> = Omit<T, P> &
|
||||
Required<Pick<T, P>>;
|
||||
|
||||
export type WithOptionalProperties<T, P extends keyof T> = Omit<T, P> &
|
||||
Partial<Pick<T, P>>;
|
||||
|
||||
export function getTypingIndicatorSetting(): boolean {
|
||||
return window.storage.get('typingIndicators', false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user