UNPKG

baasic-sdk-javascript

Version:

JavaScript SDK provides core functionality for building web and mobile applications on [Baasic](http://www.baasic.com/).

11 lines (10 loc) 358 B
import { IModel } from '../../../common/contracts'; import { IAppUser, IUserIdentity } from './'; export interface INewUser extends IModel, IAppUser, IUserIdentity { autoCreatePassword?: boolean; confirmPassword: string; password: string; mailUrl?: string; sendEmailNotification?: boolean; allowDashboardAccess?: boolean; }