blob: 1749d72737cf5e03ad82fe448f178fe839ca7500 (
plain) (
blame)
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;
}
}
|