summaryrefslogtreecommitdiffhomepage
path: root/packages/app/src/context
diff options
context:
space:
mode:
Diffstat (limited to 'packages/app/src/context')
-rw-r--r--packages/app/src/context/platform.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/app/src/context/platform.tsx b/packages/app/src/context/platform.tsx
index 89056b2c8..b97f70fea 100644
--- a/packages/app/src/context/platform.tsx
+++ b/packages/app/src/context/platform.tsx
@@ -41,11 +41,11 @@ export type Platform = {
/** Fetch override */
fetch?: typeof fetch
- /** Get the configured default server URL (desktop only) */
- getDefaultServerUrl?(): Promise<string | null>
+ /** Get the configured default server URL (platform-specific) */
+ getDefaultServerUrl?(): Promise<string | null> | string | null
- /** Set the default server URL to use on app startup (desktop only) */
- setDefaultServerUrl?(url: string | null): Promise<void>
+ /** Set the default server URL to use on app startup (platform-specific) */
+ setDefaultServerUrl?(url: string | null): Promise<void> | void
/** Parse markdown to HTML using native parser (desktop only, returns unprocessed code blocks) */
parseMarkdown?(markdown: string): Promise<string>