/** * Represents the user data object returned from the API. The exact structure * of this object is not known upfront and can vary. */ export type UserdataResponse = { /** * - The response may contain various properties * with different types. */ anyProperty?: any; }; /** * @file This module provides functionality to retrieve user data via API calls. * @module Userdata */ /** * Represents the user data object returned from the API. The exact structure * of this object is not known upfront and can vary. * * @typedef {object} UserdataResponse * @property {any} [anyProperty] - The response may contain various properties * with different types. */ /** * Retrieves user data by following a series of API links. * It first fetches the web application root, then finds the user services link, * and finally navigates to the 'Userdata' component to get the user's information. * * @returns {Promise} A promise that resolves with the user data object, * or `null` if the 'Userdata' component link is not found. */ export function userdata(): Promise; //# sourceMappingURL=userdata.d.ts.map