7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
import type { IStorageProvider } from '@mtcute/core'
|
|
|
|
import type { IStateRepository } from './repository.js'
|
|
|
|
export type IStateStorageProvider = IStorageProvider<{
|
|
state: IStateRepository
|
|
}>
|