datasquirel/dist/package-shared/utils/create-user-sql-user.d.ts
Benjamin Toby 7e8bb37c09 Updates
2025-07-05 14:59:30 +01:00

8 lines
194 B
TypeScript

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