@archon-inc/sdk
Version:
Integrate easily to our government platform using this SDK. More info on https://archon.inc/sdk
8 lines • 335 B
TypeScript
import { User, UserId } from "../types/user.js";
/**
* Given a user id, return the user's information from the Archon authentication layer.
* @param id The user id to get information for.
* @returns The user's information.
*/
export default function getUserInfo(id: UserId): Promise<User>;
//# sourceMappingURL=getUserInfo.d.ts.map