We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94036ce commit 4fd92baCopy full SHA for 4fd92ba
rest/profile.ts
@@ -11,10 +11,13 @@ import type { FetchError } from "./robustFetch.ts";
11
import { type BaseOptions, setDefaults } from "./options.ts";
12
13
export interface GetProfile {
14
- /** /api/users/me の要求を組み立てる
+ /** Constructs a request for the /api/users/me endpoint
15
*
16
- * @param init connect.sid etc.
17
- * @return request
+ * This endpoint retrieves the current user's profile information,
+ * which can be either a MemberUser or GuestUser profile.
18
+ *
19
+ * @param init Options including connect.sid (session ID) and other configuration
20
+ * @return The constructed request object
21
*/
22
toRequest: (init?: BaseOptions) => Request;
23
0 commit comments