├── .gitignore ├── .npmignore ├── .prettierignore ├── .travis.yml ├── LICENSE ├── README.md ├── babel.config.js ├── examples ├── browser.html ├── custom_chart_example.js ├── image_fill.js ├── short_url_example.js ├── signed_url.js ├── simple_example.js └── to_file_example.js ├── package.json ├── src └── index.ts ├── test ├── index.test.ts └── setupJest.js ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/babel.config.js -------------------------------------------------------------------------------- /examples/browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/examples/browser.html -------------------------------------------------------------------------------- /examples/custom_chart_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/examples/custom_chart_example.js -------------------------------------------------------------------------------- /examples/image_fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/examples/image_fill.js -------------------------------------------------------------------------------- /examples/short_url_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/examples/short_url_example.js -------------------------------------------------------------------------------- /examples/signed_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/examples/signed_url.js -------------------------------------------------------------------------------- /examples/simple_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/examples/simple_example.js -------------------------------------------------------------------------------- /examples/to_file_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/examples/to_file_example.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /test/setupJest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/test/setupJest.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typpo/quickchart-js/HEAD/yarn.lock --------------------------------------------------------------------------------