We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2f0f07 commit 8880e1cCopy full SHA for 8880e1c
packages/angular_devkit/schematics/src/sink/sink.ts
@@ -27,7 +27,6 @@ import {
27
OverwriteFileAction,
28
RenameFileAction,
29
UnknownActionException,
30
- isAction,
31
} from '../tree/action';
32
import { Tree } from '../tree/interface';
33
packages/angular_devkit/schematics/src/tree/action.ts
@@ -156,7 +156,9 @@ export function isContentAction(action: Action): action is CreateFileAction | Ov
156
return action.kind == 'c' || action.kind == 'o';
157
}
158
159
-
+/**
160
+ * @deprecated since version 11.0. not used anymore can be removed in future version.
161
+ */
162
export function isAction(action: any): action is Action { // tslint:disable-line:no-any
163
const kind = action && action.kind;
164
0 commit comments