From b22f6770c8bd084d66950655203c61dd701b3d90 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sat, 4 Jun 2022 08:51:19 +0200 Subject: Remove node_modules --- node_modules/error/docs.mli | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 node_modules/error/docs.mli (limited to 'node_modules/error/docs.mli') diff --git a/node_modules/error/docs.mli b/node_modules/error/docs.mli deleted file mode 100644 index 7a1dac7..0000000 --- a/node_modules/error/docs.mli +++ /dev/null @@ -1,26 +0,0 @@ -type OptionError := { - option: T | null, - message: String, - type: "OptionError" -} - -type TypedError := { - message: String, - type: T -} - -type ValidationError := { - errors: Array, - message: String, - type: "ValidationError" -} - -error/option := (String, T) => OptionError - -error/typed := (args: { - message: String, - type: String, - name?: String -}) => (opts: Object) => TypedError - -error/validation := (Array) => ValidationError -- cgit