feat(focus): interactive options for focus handling

This commit is contained in:
Nathan Walker
2020-08-19 21:34:23 -07:00
parent 315f0e0f73
commit 1007cf9d92
11 changed files with 71 additions and 111 deletions

View File

@@ -11,10 +11,7 @@ export declare function getAppModulePath(mainPath: string): string;
export declare function findIdentifierNode(node: ts.Node, text: string): ts.Node | null;
export declare function getObjectPropertyMatches(objectNode: ts.ObjectLiteralExpression, sourceFile: ts.SourceFile, targetPropertyName: string): ts.ObjectLiteralElement[];
export declare function getDecoratorMetadata(source: ts.SourceFile, identifier: string, module: string): ts.Node[];
export declare function angularImportsFromNode(
node: ts.ImportDeclaration,
_sourceFile: ts.SourceFile
): {
[name: string]: string;
export declare function angularImportsFromNode(node: ts.ImportDeclaration, _sourceFile: ts.SourceFile): {
[name: string]: string;
};
export declare function getExpressionName(expression: ts.Expression): string;

View File

@@ -1,8 +1,5 @@
import { AngularCompilerPlugin } from '@ngtools/webpack';
export declare function getResolvedEntryModule(
ngCompiler: AngularCompilerPlugin,
projectDir: string
): {
path: any;
className: string;
export declare function getResolvedEntryModule(ngCompiler: AngularCompilerPlugin, projectDir: string): {
path: any;
className: string;
};