Skip to content

Commit f4eef7a

Browse files
committed
nit
1 parent c68a82a commit f4eef7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/functions-config-export.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ export const command = new Command("functions:config:export")
5252
let configJson: Record<string, unknown>;
5353
try {
5454
configJson = await functionsConfig.materializeAll(projectId);
55-
} catch (err: any) {
55+
} catch (err: unknown) {
5656
throw new FirebaseError(
5757
`Failed to fetch runtime config for project ${projectId}. ` +
5858
"Ensure you have the required permissions:\n\t" +
5959
RUNTIME_CONFIG_PERMISSIONS.join("\n\t"),
60-
{ original: err },
60+
{ original: err as Error },
6161
);
6262
}
6363

0 commit comments

Comments
 (0)