aboutsummaryrefslogtreecommitdiff
path: root/src/index.d.ts
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2022-01-06 21:59:34 +0530
committerAkshay Nair <phenax5@gmail.com>2022-01-06 22:00:38 +0530
commit3d88de49d99d86c70204d6870296b20177c2af21 (patch)
treef8bbf0580035f0792d5568082ec11db02af5668b /src/index.d.ts
parent0cc4e48c848aef5751573628e4af6e194b272d1d (diff)
downloadelxr-3d88de49d99d86c70204d6870296b20177c2af21.tar.gz
elxr-3d88de49d99d86c70204d6870296b20177c2af21.zip
chore: adds prettier
Diffstat (limited to 'src/index.d.ts')
-rw-r--r--src/index.d.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/index.d.ts b/src/index.d.ts
deleted file mode 100644
index fdaab41..0000000
--- a/src/index.d.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import { Either } from 'fp-ts/Either';
-declare type ParserResult<T> = [T, string];
-declare type ParserError = [string, string];
-declare type Parser<T> = (input: string) => Either<ParserError, ParserResult<T>>;
-export declare const p_digit: Parser<string>;
-export declare const many0: <T>(p: Parser<T>) => Parser<T[]>;
-export {};