13 lines
285 B
TypeScript
13 lines
285 B
TypeScript
import { UserType } from "../../types";
|
|
type Params = {
|
|
user: UserType;
|
|
};
|
|
type Return = {
|
|
fullName?: string;
|
|
host?: string;
|
|
username?: string;
|
|
password?: string;
|
|
};
|
|
export default function grabMariadbMainUserForUser({ user, }: Params): Promise<Return>;
|
|
export {};
|