390b65f796
- added readme in each package - updated typedoc, fixed related issues - use @link instead of @see - moved configs to typedoc.js, improved exclusion of unneeded stuff - custom plugin for typedoc for cross-package references - preparing to move documentation to separate repository
16 lines
245 B
Markdown
16 lines
245 B
Markdown
# @mtcute/sqlite
|
|
|
|
![](./coverage.svg)
|
|
|
|
SQLite backed storage for mtcute.
|
|
|
|
## Usage
|
|
|
|
```typescript
|
|
import { SqliteStorage } from '@mtcute/sqlite'
|
|
|
|
const tg = new TelegramClient({
|
|
// ...
|
|
storage: new SqliteStorage('client.session')
|
|
})
|
|
```
|