// Define TypeScript interface for service `users`. (Can be re-generated.) // !code: imports // !end // !code: init // !end // ! code: nedb_interface // tslint:disable-next-line:no-empty-interface export interface User { email: string; firstName: string; lastName: string; password: string; } // !end // !code: funcs // !end // !code: end // !end