├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── client ├── index.d.ts └── index.js ├── images ├── Screen Recording 2021-11-04 at 2.00.46 PM.gif ├── Screen Recording 2021-11-04 at 2.08.22 PM.gif └── Screen Recording 2021-11-04 at 2.13.55 PM.gif ├── index.d.ts ├── index.js ├── package.json ├── server ├── index.d.ts └── index.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/README.md -------------------------------------------------------------------------------- /client/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/client/index.d.ts -------------------------------------------------------------------------------- /client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/client/index.js -------------------------------------------------------------------------------- /images/Screen Recording 2021-11-04 at 2.00.46 PM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/images/Screen Recording 2021-11-04 at 2.00.46 PM.gif -------------------------------------------------------------------------------- /images/Screen Recording 2021-11-04 at 2.08.22 PM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/images/Screen Recording 2021-11-04 at 2.08.22 PM.gif -------------------------------------------------------------------------------- /images/Screen Recording 2021-11-04 at 2.13.55 PM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/images/Screen Recording 2021-11-04 at 2.13.55 PM.gif -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/package.json -------------------------------------------------------------------------------- /server/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/server/index.d.ts -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/server/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeltg/next-rest/HEAD/tsconfig.json --------------------------------------------------------------------------------