Skip to content

Commit 0178ceb

Browse files
committed
linting fixes
1 parent bca14cc commit 0178ceb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/express/src/client-requests/pack-requests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export async function packCourse(data: PackCourseData): Promise<PackCourseRespon
113113
async writeFile(filePath: string, data: string | Buffer): Promise<void> {
114114
await fs.writeFile(filePath, data);
115115
},
116-
async writeJson(filePath: string, data: any, options?: { spaces?: number }): Promise<void> {
116+
async writeJson(filePath: string, data: unknown, options?: { spaces?: number }): Promise<void> {
117117
await fs.writeJson(filePath, data, options);
118118
},
119119
async ensureDir(dirPath: string): Promise<void> {

0 commit comments

Comments
 (0)