background.ts: Introduce types for redux initialState
This commit is contained in:
parent
3673b6d101
commit
4763831d3e
42 changed files with 315 additions and 238 deletions
|
@ -14,12 +14,12 @@ export type UserStateType = {
|
|||
attachmentsPath: string;
|
||||
stickersPath: string;
|
||||
tempPath: string;
|
||||
ourConversationId: string;
|
||||
ourDeviceId: number;
|
||||
ourUuid: UUIDStringType;
|
||||
ourNumber: string;
|
||||
ourConversationId: string | undefined;
|
||||
ourDeviceId: number | undefined;
|
||||
ourUuid: UUIDStringType | undefined;
|
||||
ourNumber: string | undefined;
|
||||
platform: string;
|
||||
regionCode: string;
|
||||
regionCode: string | undefined;
|
||||
i18n: LocalizerType;
|
||||
interactionMode: 'mouse' | 'keyboard';
|
||||
theme: ThemeType;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue