(name: string, options?: object)
| 7 | import createUser from './create/user'; |
| 8 | |
| 9 | export async function create(name: string, options?: object): Promise<any> { |
| 10 | return createFactory(name, options); |
| 11 | } |
| 12 | |
| 13 | export { |
| 14 | createAccount, |
no outgoing calls
no test coverage detected