6 lines
263 B
TypeScript
6 lines
263 B
TypeScript
import { AddUserParams, APIResponseObject } from "../../types";
|
|
/**
|
|
* # Add User to Database
|
|
*/
|
|
export default function addUser({ apiKey, payload, database, encryptionKey, useLocal, verify, apiVersion, dsqlUserID, }: AddUserParams): Promise<APIResponseObject>;
|