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