Skip to content

Commit

Permalink
chore: fix ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
ilhan007 committed Jun 21, 2024
1 parent a9c2dee commit bc7299b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AvailableThemes, CommonCssParts } from "./config";
import { CommonCssParts } from "./config";
import { Schema } from "./schema";
import { askQuestion } from './utils/promt';

Expand Down Expand Up @@ -33,4 +33,3 @@ async function askCommonCssParts(): Promise<string[]> {
choices: CommonCssParts,
});
}

3 changes: 2 additions & 1 deletion libs/fundamental-styles/schematics/get-config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AvailableThemes, CommonCssParts } from "./config";
import { CommonCssParts } from "./config";
import { Schema } from "./schema";
import { askQuestion } from './utils/promt';

Expand Down Expand Up @@ -33,3 +33,4 @@ async function askCommonCssParts(): Promise<string[]> {
choices: CommonCssParts,
});
}

3 changes: 2 additions & 1 deletion libs/ui5-angular/schematics/get-config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AvailableThemes, CommonCssParts } from "./config";
import { CommonCssParts } from "./config";
import { Schema } from "./schema";
import { askQuestion } from './utils/promt';

Expand Down Expand Up @@ -33,3 +33,4 @@ async function askCommonCssParts(): Promise<string[]> {
choices: CommonCssParts,
});
}

0 comments on commit bc7299b

Please sign in to comment.