├── .eslintrc ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── bin └── firebase-bolt ├── docs ├── changelog.txt ├── guide.md ├── images │ └── flash.png ├── language.md └── todo.md ├── gulpfile.js ├── package.json ├── samples ├── all_access.bolt ├── all_access.json ├── chat.bolt ├── chat.json ├── children-by-nesting.bolt ├── children-by-nesting.json ├── children.bolt ├── children.json ├── create-update-delete.bolt ├── create-update-delete.json ├── functional.bolt ├── functional.json ├── generics.bolt ├── generics.json ├── groups.bolt ├── groups.json ├── issue-111.bolt ├── issue-111.json ├── issue-118.bolt ├── issue-118.json ├── issue-136.bolt ├── issue-136.json ├── issue-169.bolt ├── issue-169.json ├── issue-232.bolt ├── issue-232.json ├── issue-97.bolt ├── issue-97.json ├── mail.bolt ├── mail.json ├── map-scalar.bolt ├── map-scalar.json ├── multi-update.bolt ├── multi-update.json ├── regexp.bolt ├── regexp.json ├── serialized.bolt ├── serialized.json ├── type-extension.bolt ├── type-extension.json ├── user-security.bolt ├── user-security.json ├── userdoc.bolt └── userdoc.json ├── src ├── ast.ts ├── bolt.ts ├── file-io.ts ├── firebase-rest.ts ├── logger.ts ├── parse-util.ts ├── rules-generator.ts ├── rules-parser.pegjs ├── simulator.ts ├── test │ ├── ast-test.ts │ ├── chat-test.ts │ ├── cli-test.ts │ ├── create-update-delete-test.ts │ ├── firebase-rest-test.ts │ ├── firebase-rules-test.ts │ ├── generator-test.ts │ ├── index.html │ ├── issue-118-test.ts │ ├── mail-test.ts │ ├── parser-test.ts │ ├── regexp-test.ts │ ├── sample-files.ts │ ├── test-helper.ts │ └── util-test.ts └── util.ts ├── tools ├── bash-helper ├── browser-tests ├── compare-sample ├── configure-project ├── debug-tests ├── ensure-secret.py ├── flatten-json.py ├── regenerate-sample-files ├── run-tests ├── use ├── usefuncs └── web-server ├── tsconfig.json ├── tslint.json ├── typings.json └── typings ├── browser.d.ts ├── browser └── ambient │ ├── chai │ └── chai.d.ts │ ├── es6-promise │ └── es6-promise.d.ts │ ├── mocha │ └── mocha.d.ts │ └── node │ └── node.d.ts ├── main.d.ts └── main └── ambient ├── chai └── chai.d.ts ├── es6-promise └── es6-promise.d.ts ├── mocha └── mocha.d.ts └── node └── node.d.ts /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/README.md -------------------------------------------------------------------------------- /bin/firebase-bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/bin/firebase-bolt -------------------------------------------------------------------------------- /docs/changelog.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/docs/guide.md -------------------------------------------------------------------------------- /docs/images/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/docs/images/flash.png -------------------------------------------------------------------------------- /docs/language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/docs/language.md -------------------------------------------------------------------------------- /docs/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/docs/todo.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/package.json -------------------------------------------------------------------------------- /samples/all_access.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/all_access.bolt -------------------------------------------------------------------------------- /samples/all_access.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/all_access.json -------------------------------------------------------------------------------- /samples/chat.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/chat.bolt -------------------------------------------------------------------------------- /samples/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/chat.json -------------------------------------------------------------------------------- /samples/children-by-nesting.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/children-by-nesting.bolt -------------------------------------------------------------------------------- /samples/children-by-nesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/children-by-nesting.json -------------------------------------------------------------------------------- /samples/children.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/children.bolt -------------------------------------------------------------------------------- /samples/children.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/children.json -------------------------------------------------------------------------------- /samples/create-update-delete.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/create-update-delete.bolt -------------------------------------------------------------------------------- /samples/create-update-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/create-update-delete.json -------------------------------------------------------------------------------- /samples/functional.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/functional.bolt -------------------------------------------------------------------------------- /samples/functional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/functional.json -------------------------------------------------------------------------------- /samples/generics.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/generics.bolt -------------------------------------------------------------------------------- /samples/generics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/generics.json -------------------------------------------------------------------------------- /samples/groups.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/groups.bolt -------------------------------------------------------------------------------- /samples/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/groups.json -------------------------------------------------------------------------------- /samples/issue-111.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/issue-111.bolt -------------------------------------------------------------------------------- /samples/issue-111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/issue-111.json -------------------------------------------------------------------------------- /samples/issue-118.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/issue-118.bolt -------------------------------------------------------------------------------- /samples/issue-118.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/issue-118.json -------------------------------------------------------------------------------- /samples/issue-136.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/issue-136.bolt -------------------------------------------------------------------------------- /samples/issue-136.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/issue-136.json -------------------------------------------------------------------------------- /samples/issue-169.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/issue-169.bolt -------------------------------------------------------------------------------- /samples/issue-169.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/issue-169.json -------------------------------------------------------------------------------- /samples/issue-232.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/issue-232.bolt -------------------------------------------------------------------------------- /samples/issue-232.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/issue-232.json -------------------------------------------------------------------------------- /samples/issue-97.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/issue-97.bolt -------------------------------------------------------------------------------- /samples/issue-97.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/issue-97.json -------------------------------------------------------------------------------- /samples/mail.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/mail.bolt -------------------------------------------------------------------------------- /samples/mail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/mail.json -------------------------------------------------------------------------------- /samples/map-scalar.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/map-scalar.bolt -------------------------------------------------------------------------------- /samples/map-scalar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/map-scalar.json -------------------------------------------------------------------------------- /samples/multi-update.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/multi-update.bolt -------------------------------------------------------------------------------- /samples/multi-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/multi-update.json -------------------------------------------------------------------------------- /samples/regexp.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/regexp.bolt -------------------------------------------------------------------------------- /samples/regexp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/regexp.json -------------------------------------------------------------------------------- /samples/serialized.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/serialized.bolt -------------------------------------------------------------------------------- /samples/serialized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/serialized.json -------------------------------------------------------------------------------- /samples/type-extension.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/type-extension.bolt -------------------------------------------------------------------------------- /samples/type-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/type-extension.json -------------------------------------------------------------------------------- /samples/user-security.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/user-security.bolt -------------------------------------------------------------------------------- /samples/user-security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/user-security.json -------------------------------------------------------------------------------- /samples/userdoc.bolt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/userdoc.bolt -------------------------------------------------------------------------------- /samples/userdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/samples/userdoc.json -------------------------------------------------------------------------------- /src/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/ast.ts -------------------------------------------------------------------------------- /src/bolt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/bolt.ts -------------------------------------------------------------------------------- /src/file-io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/file-io.ts -------------------------------------------------------------------------------- /src/firebase-rest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/firebase-rest.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/parse-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/parse-util.ts -------------------------------------------------------------------------------- /src/rules-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/rules-generator.ts -------------------------------------------------------------------------------- /src/rules-parser.pegjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/rules-parser.pegjs -------------------------------------------------------------------------------- /src/simulator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/simulator.ts -------------------------------------------------------------------------------- /src/test/ast-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/ast-test.ts -------------------------------------------------------------------------------- /src/test/chat-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/chat-test.ts -------------------------------------------------------------------------------- /src/test/cli-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/cli-test.ts -------------------------------------------------------------------------------- /src/test/create-update-delete-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/create-update-delete-test.ts -------------------------------------------------------------------------------- /src/test/firebase-rest-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/firebase-rest-test.ts -------------------------------------------------------------------------------- /src/test/firebase-rules-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/firebase-rules-test.ts -------------------------------------------------------------------------------- /src/test/generator-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/generator-test.ts -------------------------------------------------------------------------------- /src/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/index.html -------------------------------------------------------------------------------- /src/test/issue-118-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/issue-118-test.ts -------------------------------------------------------------------------------- /src/test/mail-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/mail-test.ts -------------------------------------------------------------------------------- /src/test/parser-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/parser-test.ts -------------------------------------------------------------------------------- /src/test/regexp-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/regexp-test.ts -------------------------------------------------------------------------------- /src/test/sample-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/sample-files.ts -------------------------------------------------------------------------------- /src/test/test-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/test-helper.ts -------------------------------------------------------------------------------- /src/test/util-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/test/util-test.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/src/util.ts -------------------------------------------------------------------------------- /tools/bash-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tools/bash-helper -------------------------------------------------------------------------------- /tools/browser-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tools/browser-tests -------------------------------------------------------------------------------- /tools/compare-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tools/compare-sample -------------------------------------------------------------------------------- /tools/configure-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tools/configure-project -------------------------------------------------------------------------------- /tools/debug-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tools/debug-tests -------------------------------------------------------------------------------- /tools/ensure-secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tools/ensure-secret.py -------------------------------------------------------------------------------- /tools/flatten-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tools/flatten-json.py -------------------------------------------------------------------------------- /tools/regenerate-sample-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tools/regenerate-sample-files -------------------------------------------------------------------------------- /tools/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tools/run-tests -------------------------------------------------------------------------------- /tools/use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tools/use -------------------------------------------------------------------------------- /tools/usefuncs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tools/usefuncs -------------------------------------------------------------------------------- /tools/web-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tools/web-server -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/tslint.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/typings.json -------------------------------------------------------------------------------- /typings/browser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/typings/browser.d.ts -------------------------------------------------------------------------------- /typings/browser/ambient/chai/chai.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/typings/browser/ambient/chai/chai.d.ts -------------------------------------------------------------------------------- /typings/browser/ambient/es6-promise/es6-promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/typings/browser/ambient/es6-promise/es6-promise.d.ts -------------------------------------------------------------------------------- /typings/browser/ambient/mocha/mocha.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/typings/browser/ambient/mocha/mocha.d.ts -------------------------------------------------------------------------------- /typings/browser/ambient/node/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/typings/browser/ambient/node/node.d.ts -------------------------------------------------------------------------------- /typings/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/typings/main.d.ts -------------------------------------------------------------------------------- /typings/main/ambient/chai/chai.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/typings/main/ambient/chai/chai.d.ts -------------------------------------------------------------------------------- /typings/main/ambient/es6-promise/es6-promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/typings/main/ambient/es6-promise/es6-promise.d.ts -------------------------------------------------------------------------------- /typings/main/ambient/mocha/mocha.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/typings/main/ambient/mocha/mocha.d.ts -------------------------------------------------------------------------------- /typings/main/ambient/node/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/bolt/HEAD/typings/main/ambient/node/node.d.ts --------------------------------------------------------------------------------