6 lines
235 B
TypeScript
6 lines
235 B
TypeScript
import { APIGetUserFunctionParams, GetUserFunctionReturn } from "../../../types";
|
|
/**
|
|
* # API Get User
|
|
*/
|
|
export default function apiGetUser({ fields, dbFullName, userId, }: APIGetUserFunctionParams): Promise<GetUserFunctionReturn>;
|