bf7c125 ^
1 2 3 4 5 6 7 8 9 10 11 12 13 14
export default class CompletionGroup { constructor(name, items) { this.name0 = name; this.items0 = items; } get name() { return this.name0; } get items() { return this.items0; } }