@vuedoc/parser
Version:
Generate a JSON documentation for a Vue file
11 lines • 410 B
JavaScript
import { AbstractCategorizeEntry } from './AbstractCategorizeEntry.js';
import { Type } from '../lib/Enum.js';
export class ComputedEntry extends AbstractCategorizeEntry {
constructor({ name, type = Type.unknown, dependencies = [] }) {
super('computed');
this.name = name;
this.type = type;
this.dependencies = dependencies;
}
}
//# sourceMappingURL=ComputedEntry.js.map