We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bca14cc commit 0178cebCopy full SHA for 0178ceb
packages/express/src/client-requests/pack-requests.ts
@@ -113,7 +113,7 @@ export async function packCourse(data: PackCourseData): Promise<PackCourseRespon
113
async writeFile(filePath: string, data: string | Buffer): Promise<void> {
114
await fs.writeFile(filePath, data);
115
},
116
- async writeJson(filePath: string, data: any, options?: { spaces?: number }): Promise<void> {
+ async writeJson(filePath: string, data: unknown, options?: { spaces?: number }): Promise<void> {
117
await fs.writeJson(filePath, data, options);
118
119
async ensureDir(dirPath: string): Promise<void> {
0 commit comments