rymizuki/node-hariko

View on GitHub
src/hariko-parser/structure/annotations.ts

Summary

Maintainability
A
0 mins
Test Coverage
export class AnnotationsStructure {
  private rows = []

  add(annotation) {
    this.rows.push(annotation)
  }

  toJson() {
    return []
  }

  static create() {
    return new AnnotationsStructure()
  }
}