UNPKG

@kiwicom/smart-faq

Version:

15 lines (10 loc) 235 B
// @flow export type User = { id: ?string, email: string, firstname: ?string, lastname: ?string, }; export type onLogin = () => void; export type onLogout = () => Promise<any>; export type Provider = 'facebook' | 'google';