├── .github └── workflows │ └── continuous-deployment.yml ├── .gitignore ├── .husky └── pre-commit ├── LICENSE ├── README.md ├── package.json ├── src ├── index.ts └── types │ ├── index.d.ts │ └── use-formspark.ts └── tsconfig.json /.github/workflows/continuous-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formspark/use-formspark/HEAD/.github/workflows/continuous-deployment.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | .idea 3 | dist 4 | node_modules -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx tsdx lint src --fix 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formspark/use-formspark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formspark/use-formspark/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formspark/use-formspark/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formspark/use-formspark/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const __DEV__: boolean; 2 | -------------------------------------------------------------------------------- /src/types/use-formspark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formspark/use-formspark/HEAD/src/types/use-formspark.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formspark/use-formspark/HEAD/tsconfig.json --------------------------------------------------------------------------------