datasquirel/dist/package-shared/actions/users/get-user.d.ts
Benjamin Toby e82bcd0824 Updates
2025-01-25 14:20:25 +01:00

14 lines
330 B
TypeScript

import { GetUserFunctionReturn } from "../../types";
type Param = {
key: string;
database: string;
userId: number;
fields?: string[];
apiUserId?: boolean;
};
/**
* # Get User
*/
export default function getUser({ key, userId, database, fields, apiUserId, }: Param): Promise<GetUserFunctionReturn>;
export {};