Remove undefined return type from getFileContent

This commit is contained in:
Josh Gross
2023-02-06 12:19:52 -05:00
parent f4dde16b61
commit b9a01ed5aa
@@ -1,3 +1,3 @@
export interface FileProvider {
getFileContent(path: string): Promise<File | undefined>;
getFileContent(path: string): Promise<File>;
}