UNPKG

@vuedoc/parser

Version:

Generate a JSON documentation for a Vue file

12 lines (9 loc) 270 B
import { Entry } from '../../types/Entry.js'; export class Keyword implements Entry.Keyword { name: string; description: string | undefined; constructor(name?: string, description?: string) { this.name = name || ''; this.description = description; } }