import * as ts from 'typescript'; import { ComponentMetadata } from './types'; export default class Metadata { readonly prefix: string; readonly suffix: string; components: ComponentMetadata[]; constructor(prefix?: string, suffix?: string); registerComponent: (component: ComponentMetadata) => void; findComponentFrom(tsSourceFile: ts.SourceFile): ComponentMetadata; }