├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── context │ ├── my.ts │ └── wx.ts ├── index.ts └── util.ts ├── tsconfig.json └── typings.d.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | esm/ 4 | dist/ 5 | package-lock.json 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/f2-context/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/f2-context/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/f2-context/HEAD/package.json -------------------------------------------------------------------------------- /src/context/my.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/f2-context/HEAD/src/context/my.ts -------------------------------------------------------------------------------- /src/context/wx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/f2-context/HEAD/src/context/wx.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/f2-context/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/f2-context/HEAD/src/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/f2-context/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------