aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.ts
diff options
context:
space:
mode:
authorLibravatar Ricardo Cino <ricardo@cino.io>2022-06-22 00:32:18 +0200
committerLibravatar GitHub <noreply@github.com>2022-06-21 22:32:18 +0000
commit73ba955e344c8ccedd43235495ef8b72b5a2b6fd (patch)
tree03766ab32fefe7e83026a14393527f1dcbaed849 /src/config.ts
parentdocs: add cino as a contributor for infra [skip ci] (#330) (diff)
downloadferdium-app-73ba955e344c8ccedd43235495ef8b72b5a2b6fd.tar.gz
ferdium-app-73ba955e344c8ccedd43235495ef8b72b5a2b6fd.tar.zst
ferdium-app-73ba955e344c8ccedd43235495ef8b72b5a2b6fd.zip
chore: Transform AppStore.js into Typescript (#329)
* turn actions into typescript * correct tsconfig * added TypedStore
Diffstat (limited to 'src/config.ts')
-rw-r--r--src/config.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/config.ts b/src/config.ts
index 62b4f4e68..d29480dc6 100644
--- a/src/config.ts
+++ b/src/config.ts
@@ -86,7 +86,7 @@ export const SEARCH_ENGINE_NAMES = {
86 86
87export const SEARCH_ENGINE_URLS = { 87export const SEARCH_ENGINE_URLS = {
88 [SEARCH_ENGINE_STARTPAGE]: ({ searchTerm }) => 88 [SEARCH_ENGINE_STARTPAGE]: ({ searchTerm }) =>
89 `https://www.startpage.com/sp/search?query=${searchTerm}`, 89 `https://www.startpage.com/sp/search?query=${searchTerm}`,
90 [SEARCH_ENGINE_GOOGLE]: ({ searchTerm }) => 90 [SEARCH_ENGINE_GOOGLE]: ({ searchTerm }) =>
91 `https://www.google.com/search?q=${searchTerm}`, 91 `https://www.google.com/search?q=${searchTerm}`,
92 [SEARCH_ENGINE_DDG]: ({ searchTerm }) => 92 [SEARCH_ENGINE_DDG]: ({ searchTerm }) =>
@@ -105,7 +105,7 @@ const TODO_RTM_URL = 'https://www.rememberthemilk.com/';
105const TODO_ANYDO_URL = 'https://desktop.any.do/'; 105const TODO_ANYDO_URL = 'https://desktop.any.do/';
106const TODO_GOOGLETASKS_URL = 106const TODO_GOOGLETASKS_URL =
107 'https://tasks.google.com/embed/?origin=https%3A%2F%2Fcalendar.google.com&fullWidth=1'; 107 'https://tasks.google.com/embed/?origin=https%3A%2F%2Fcalendar.google.com&fullWidth=1';
108const TODO_GOOGLEKEEP_URL = 'https://keep.google.com/' 108const TODO_GOOGLEKEEP_URL = 'https://keep.google.com/';
109 109
110export const TODO_SERVICE_RECIPE_IDS = { 110export const TODO_SERVICE_RECIPE_IDS = {
111 [TODO_TODOIST_URL]: 'todoist', 111 [TODO_TODOIST_URL]: 'todoist',
@@ -152,8 +152,8 @@ export const SIDEBAR_SERVICES_LOCATION_BOTTOMRIGHT = 2;
152export const SIDEBAR_SERVICES_LOCATION = { 152export const SIDEBAR_SERVICES_LOCATION = {
153 [SIDEBAR_SERVICES_LOCATION_TOPLEFT]: 'Top/Left', 153 [SIDEBAR_SERVICES_LOCATION_TOPLEFT]: 'Top/Left',
154 [SIDEBAR_SERVICES_LOCATION_CENTER]: 'Center', 154 [SIDEBAR_SERVICES_LOCATION_CENTER]: 'Center',
155 [SIDEBAR_SERVICES_LOCATION_BOTTOMRIGHT]: 'Bottom/Right' 155 [SIDEBAR_SERVICES_LOCATION_BOTTOMRIGHT]: 'Bottom/Right',
156} 156};
157 157
158export const ICON_SIZES = { 158export const ICON_SIZES = {
159 0: 'Very small icons', 159 0: 'Very small icons',