mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-09-01 19:49:54 +02:00
mobile: fix typings
This commit is contained in:
committed by
Abdullah Atta
parent
1870406b5e
commit
fd98b89900
@@ -25,7 +25,7 @@ import { FileType } from "react-native-scoped-storage";
|
||||
import create, { State } from "zustand";
|
||||
import { Reminder } from "../services/notifications";
|
||||
import { ACCENT } from "../utils/color-scheme";
|
||||
import { ThemeDark, ThemeLight, ThemeType } from "@notesnook/theme";
|
||||
import { ThemeDark, ThemeLight } from "@notesnook/theme";
|
||||
export type Settings = {
|
||||
showToolbarOnTop?: boolean;
|
||||
showKeyboardOnOpen?: boolean;
|
||||
@@ -76,8 +76,8 @@ export type Settings = {
|
||||
defaultFontSize: string;
|
||||
defaultFontFamily: string;
|
||||
colorScheme: "dark" | "light";
|
||||
lighTheme: ThemeType;
|
||||
darkTheme: ThemeType;
|
||||
lighTheme: typeof ThemeDark;
|
||||
darkTheme: typeof ThemeDark;
|
||||
};
|
||||
|
||||
type DimensionsType = {
|
||||
|
||||
Reference in New Issue
Block a user