@hadss/hmrouter-plugin
Version:
HMRouter Compiler Plugin
8 lines (7 loc) • 518 B
TypeScript
import { Decorator, SourceFile } from 'ts-morph';
import { IConstantResolver } from '../interface/IConstantResolver';
import { BaseAnalyzeResult } from '../../../framework';
export declare class DecoratorParser {
static parseDecorator(decorator: Decorator, constantResolver: IConstantResolver, sourceFile: SourceFile, filePath: string): BaseAnalyzeResult;
static parseDecoratorArguments(decorator: Decorator, constantResolver: IConstantResolver, sourceFile: SourceFile, filePath: string): BaseAnalyzeResult;
}