gitextract_myu2bsph/ ├── .codeclimate.yml ├── .esdoc.json ├── .github/ │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── stale.yml ├── .gitignore ├── .prettierrc ├── .travis.yml ├── .vscode/ │ ├── launch.json │ └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── LIMITED_COMMERCIAL_LICENSE.md ├── README.md ├── UNLIMITED_COMMERCIAL_LICENSE.md ├── assets/ │ ├── demos.css │ └── demos.js ├── dist/ │ ├── typed.cjs │ ├── typed.module.js │ └── typed.umd.js ├── docs/ │ ├── API.md │ ├── assets/ │ │ ├── anchor.js │ │ ├── bass-addons.css │ │ ├── bass.css │ │ ├── fonts/ │ │ │ ├── LICENSE.txt │ │ │ ├── OTF/ │ │ │ │ ├── SourceCodePro-Bold.otf │ │ │ │ └── SourceCodePro-Regular.otf │ │ │ └── source-code-pro.css │ │ ├── github.css │ │ ├── site.js │ │ ├── split.css │ │ ├── split.js │ │ └── style.css │ ├── ast/ │ │ └── source/ │ │ ├── .external-ecmascript.js.json │ │ ├── defaults.js.json │ │ ├── html-parser.js.json │ │ ├── initializer.js.json │ │ ├── typed-using-raf.js.json │ │ └── typed.js.json │ ├── class/ │ │ └── src/ │ │ ├── html-parser.js~HTMLParser.html │ │ ├── initializer.js~Initializer.html │ │ ├── typed-using-raf.js~Typed.html │ │ └── typed.js~Typed.html │ ├── coverage.json │ ├── css/ │ │ ├── github.css │ │ ├── identifiers.css │ │ ├── manual.css │ │ ├── prettify-tomorrow.css │ │ ├── search.css │ │ ├── source.css │ │ ├── style.css │ │ └── test.css │ ├── file/ │ │ └── src/ │ │ ├── defaults.js.html │ │ ├── html-parser.js.html │ │ ├── initializer.js.html │ │ ├── typed-using-raf.js.html │ │ └── typed.js.html │ ├── identifiers.html │ ├── index.html │ ├── index.json │ ├── lint.json │ ├── script/ │ │ ├── inherited-summary.js │ │ ├── inner-link.js │ │ ├── manual.js │ │ ├── patch-for-local.js │ │ ├── prettify/ │ │ │ ├── Apache-License-2.0.txt │ │ │ └── prettify.js │ │ ├── pretty-print.js │ │ ├── search.js │ │ ├── search_index.js │ │ └── test-summary.js │ ├── source.html │ └── variable/ │ └── index.html ├── index.d.ts ├── index.html ├── package.json ├── src/ │ ├── defaults.js │ ├── html-parser.js │ ├── initializer.js │ └── typed.js └── typed.d.ts