@routineless/nx-aws-cdk
Version:
Nx plugin for AWS CDK
19 lines (18 loc) • 578 B
TypeScript
import { namedTypes } from 'ast-types';
export declare const isRequireExpression: (node: namedTypes.CallExpression) => boolean;
export declare const resolveRelativePath: (importingFile: string, relativePath: string) => string;
type ImportSpecifier = {
default: true;
namespace?: never;
named?: never;
} | {
default?: never;
namespace: true;
named?: never;
} | {
default?: never;
namespace?: never;
named: string;
};
export declare const resolveReexportingName: (importedModule: string, importSpecifier: ImportSpecifier) => string;
export {};