UNPKG

720 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const change_1 = require("@schematics/angular/utility/change");
4/**
5 * An operation that does nothing.
6 */
7class NoopChange extends change_1.NoopChange {
8}
9exports.NoopChange = NoopChange;
10/**
11 * Will add text to the source code.
12 */
13class InsertChange extends change_1.InsertChange {
14}
15exports.InsertChange = InsertChange;
16/**
17 * Will remove text from the source code.
18 */
19class RemoveChange extends change_1.RemoveChange {
20}
21exports.RemoveChange = RemoveChange;
22/**
23 * Will replace text from the source code.
24 */
25class ReplaceChange extends change_1.ReplaceChange {
26}
27exports.ReplaceChange = ReplaceChange;
28//# sourceMappingURL=change.js.map
\No newline at end of file