UNPKG

@vuedoc/parser

Version:

Generate a JSON documentation for a Vue file

10 lines 339 B
import { AbstractCategorizeEntry } from './AbstractCategorizeEntry.js'; export class DataEntry extends AbstractCategorizeEntry { constructor({ name, type, initialValue }) { super('data'); this.name = name; this.type = type; this.initialValue = initialValue; } } //# sourceMappingURL=DataEntry.js.map