export interface MethodMeta {
    name: string;
    httpMethod: string;
    path: string;
    basePaths?: string[];
    isParameterized: boolean;
}
