Skip to content

Commit 2ac2ed4

Browse files
committed
fix build
1 parent fc1d276 commit 2ac2ed4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
}
3636
},
3737
"files": {
38-
"ignore": [".gitkeep", "*.tsbuildinfo", ".vscode", "tmp", "dist", "node_modules", "./src/debug.ts"]
38+
"ignore": [".gitkeep", "*.tsbuildinfo", ".vscode", "tmp", "dist", "node_modules", "./src/debug.ts", "coverage"]
3939
}
4040
}

src/mapper/doc.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import type { ArcTypes } from '..';
12
import type { ANSContent, CirculationReference, PostANSParams, PostANSPayload } from '../api/migration-center/types';
2-
import type { ArcTypes, ContentElementType } from '..';
33
import type { MaybePromise, Optional } from '../types/utils';
44

55
/**
@@ -119,7 +119,7 @@ export abstract class Document<ANS extends ANSContent> {
119119
return new Date();
120120
}
121121

122-
protected async getContentElements(): Promise<ContentElementType<any>[]> {
122+
protected async getContentElements(): Promise<ArcTypes.ContentElements.ContentElementType<any>[]> {
123123
return [];
124124
}
125125

0 commit comments

Comments
 (0)