Skip to content

Commit f1c5152

Browse files
committed
Feat: Result type
1 parent 300fc6d commit f1c5152

8 files changed

Lines changed: 2303 additions & 675 deletions

File tree

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Dependencies
2+
node_modules/
3+
4+
# Build output
5+
dist/
6+
*.tsbuildinfo
7+
8+
# Environment variables
9+
.env
10+
.env.local
11+
.env.*.local
12+
.npmrc
13+
14+
# IDE
15+
.vscode/
16+
.idea/
17+
*.swp
18+
*.swo
19+
.DS_Store
20+
21+
# OS
22+
Thumbs.db
23+
24+
# Logs
25+
logs/
26+
*.log
27+
npm-debug.log*
28+
yarn-debug.log*
29+
yarn-error.log*
30+
pnpm-debug.log*
31+
lerna-debug.log*
32+
33+
# Testing
34+
coverage/
35+
.nyc_output/
36+
37+
# Misc
38+
.cache/

.npmrc.template

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//registry.npmjs.org/:_authToken=YOUR_TOKEN_HERE

LICENSE

Lines changed: 21 additions & 674 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)