15 lines
516 B
TypeScript
15 lines
516 B
TypeScript
import { openUrl } from '../utils/openUrl';
|
|
|
|
const documentationLinks = {
|
|
home: 'https://appwrite.io/docs',
|
|
users: 'https://appwrite.io/docs/server/users',
|
|
database: 'https://appwrite.io/docs/client/database',
|
|
health: 'https://appwrite.io/docs/server/health',
|
|
storage: 'https://appwrite.io/docs/client/storage'
|
|
};
|
|
|
|
type DocsPage = keyof typeof documentationLinks;
|
|
|
|
export async function openDocumentation(page?: DocsPage): Promise<void> {
|
|
await openUrl(documentationLinks[page || 'home']);
|
|
}
|