import { NgPropertyKind } from './enums'; export interface NgPropertyType { name: string; options?: (string | number)[] | null; kindName?: string; } export interface NgPropertyDoc { name?: string; aliasName?: string; description?: string | null; kind?: NgPropertyKind; type?: string | null | NgPropertyType; /** 默认值 */ default?: string | number | boolean | null | object; tags?: Record; locales?: Record; } export interface NgMethodDoc { name?: string; params?: Record; parameters?: { name: string; type: string; description: string; }[]; returnValue?: { type: string; description: string; }; description?: string | null; } //# sourceMappingURL=declarations.d.ts.map