chore: Add the getSsl effects

This commit is contained in:
BluJ
2023-03-06 15:53:42 -07:00
parent b4fc6e891e
commit 8573a483b1
13 changed files with 90 additions and 77 deletions

View File

@@ -7,11 +7,11 @@ export { FileHelper } from "./fileHelper";
/** Used to check if the file exists before hand */
export const exists = (
effects: T.Effects,
props: { path: string; volumeId: string },
props: { path: string; volumeId: string }
) =>
effects.metadata(props).then(
(_) => true,
(_) => false,
(_) => false
);
export const isKnownError = (e: unknown): e is T.KnownError =>