From b9a01ed5aad01b1a2c7e8748af05d5156e72bf10 Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Mon, 6 Feb 2023 12:19:52 -0500 Subject: [PATCH] Remove undefined return type from `getFileContent` --- actions-workflow-parser/src/workflows/file-provider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions-workflow-parser/src/workflows/file-provider.ts b/actions-workflow-parser/src/workflows/file-provider.ts index 8416915..0bdc01d 100644 --- a/actions-workflow-parser/src/workflows/file-provider.ts +++ b/actions-workflow-parser/src/workflows/file-provider.ts @@ -1,3 +1,3 @@ export interface FileProvider { - getFileContent(path: string): Promise; + getFileContent(path: string): Promise; }