UNPKG

symref

Version:

Static code checker for AI code agents (Windsurf, Cline, etc.)

14 lines 388 B
/** * ユーザーサービスクラス */ export class UserService { /** * ユーザーのメールアドレスを更新する * @param userId ユーザーID * @param email 新しいメールアドレス */ updateUserEmail(userId, email) { console.log(`Updating email for user ${userId} to ${email}`); } } //# sourceMappingURL=UserService.js.map