UNPKG

@vuedoc/parser

Version:

Generate a JSON documentation for a Vue file

9 lines (7 loc) 307 B
import { Entry } from '../../types/Entry.js'; import { AbstractLiteralEntry } from './AbstractLiteralEntry.js'; export class InheritAttrsEntry extends AbstractLiteralEntry<'inheritAttrs', boolean> implements Entry.InheritAttrsEntry { constructor(value: boolean) { super('inheritAttrs', value); } }