ngx-appwrite
Version:
A wrapper around the Appwrite WebSDK for easier implementation in Angular 16+ projects. The goal is to make the whole SDK accessible as well as provide some convenience functionality like RxJS streams where appropriate.
8 lines (7 loc) • 345 B
TypeScript
import { type Provider } from '@angular/core';
import { Client } from 'appwrite';
import { AppwriteConfig } from './config';
export { ID } from 'appwrite';
export declare const CLIENT: () => Client;
export declare const DEFAULT_DATABASE_ID: () => string | undefined;
export declare const provideAppwrite: (config: AppwriteConfig) => Provider[];