mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
feat(focus): interactive options for focus handling
This commit is contained in:
7
packages/webpack/utils/ast-utils.d.ts
vendored
7
packages/webpack/utils/ast-utils.d.ts
vendored
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user