8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
import { UserType } from "../types";
|
|
export default function createUserSQLUser(user: UserType): Promise<{
|
|
fullName: string;
|
|
host: string;
|
|
username: string;
|
|
password: string;
|
|
}>;
|