@meeovi/types
v1.0.2
Published
Official types for the Alternate Framework
Maintainers
Readme
Alternate Framework Offical Types
- Types for Auth, Search, Commerce, Core, UI, and the Official SDK
- Typescript Support
- Framework Agnostic
How to use
npm i @meeovi/types
`import type { User, Session, Result, LoginInput, RegisterInput } from '@meeovi/types'
export interface AuthAdapter { login(input: LoginInput): Promise<Result> register(input: RegisterInput): Promise<Result> logout(): Promise<Result> getSession(): Promise<Result> refresh(): Promise<Result> getUser(): Promise<Result> }`
