UNPKG

@stencil/core

Version:

A Compiler for Web Components and Progressive Web Apps

17 lines (16 loc) 311 B
export interface JsDoc { name: string; documentation: string; type: string; tags: JSDocTagInfo[]; default?: string; parameters?: JsDoc[]; returns?: { type: string; documentation: string; }; } export interface JSDocTagInfo { name: string; text?: string; }