catalog-import: api reports

Signed-off-by: Himanshu Mishra <himanshu@orkohunter.net>
This commit is contained in:
Himanshu Mishra
2023-06-28 22:09:56 +05:30
parent aca073bf92
commit 71c1c639d6
+2 -5
View File
@@ -244,11 +244,7 @@ export type PreparePullRequestFormProps<
export type PrepareResult =
| {
type: 'locations';
locations: Array<{
exists?: boolean;
target: string;
entities: CompoundEntityRef[];
}>;
locations: NewLocations;
}
| {
type: 'repository';
@@ -364,4 +360,5 @@ export interface StepPrepareCreatePullRequestProps {
// Warnings were encountered during analysis:
//
// src/api/CatalogImportApi.d.ts:25:5 - (ae-forgotten-export) The symbol "PartialEntity" needs to be exported by the entry point index.d.ts
// src/components/useImportState.d.ts:21:5 - (ae-forgotten-export) The symbol "NewLocations" needs to be exported by the entry point index.d.ts
```