feat: 🎸 Exporting LoginStatusChecker interface (#46)

* feat: 🎸 Exporting all types in index

* feat: 🎸 Exporting LoginStatusChecker interface
This commit is contained in:
Johan Öbrink 2021-02-04 11:35:26 +01:00 committed by GitHub
parent 8351ef275f
commit 20e18e5e23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import { AsyncishFunction, Fetch } from './types'
export { Api, FetcherOptions }
export * from './types'
export { LoginStatusChecker } from './loginStatus'
export default function init(fetch: Fetch, clearCookies: AsyncishFunction, options?: FetcherOptions): Api {
return new Api(fetch, clearCookies, options)