UNPKG

symref

Version:

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

16 lines 495 B
import { UnusedService } from './UnusedService.js'; import { UserService } from './UserService.js'; export class Client { constructor() { this.service = new UnusedService(); this.userService = new UserService(); } usedMethod() { this.service.doSomething(); } updateUserInfo(userId, email) { // UserService.updateUserEmail メソッドの使用 this.userService.updateUserEmail(userId, email); } } //# sourceMappingURL=client.js.map