@vuedoc/parser
Version:
Generate a JSON documentation for a Vue file
9 lines (7 loc) • 311 B
text/typescript
import { Entry } from '../../types/Entry.js';
import { AbstractLiteralEntry } from './AbstractLiteralEntry.js';
export class KeywordsEntry extends AbstractLiteralEntry<'keyword', Entry.Keyword[]> implements Entry.KeywordsEntry {
constructor(keywords: Entry.Keyword[]) {
super('keyword', keywords);
}
}