├── .gitignore ├── .npmignore ├── README.md ├── json ├── 118 │ ├── document.d.ts │ ├── document.js │ ├── meta.d.ts │ ├── meta.js │ ├── page.d.ts │ ├── page.js │ ├── user.d.ts │ └── user.js ├── 119 │ ├── document.d.ts │ ├── document.js │ ├── meta.d.ts │ ├── meta.js │ ├── page.d.ts │ ├── page.js │ ├── user.d.ts │ └── user.js ├── 120 │ ├── document.d.ts │ ├── document.js │ ├── meta.d.ts │ ├── meta.js │ ├── page.d.ts │ ├── page.js │ ├── user.d.ts │ └── user.js ├── 121 │ ├── document.d.ts │ ├── document.js │ ├── meta.d.ts │ ├── meta.js │ ├── page.d.ts │ ├── page.js │ ├── user.d.ts │ └── user.js ├── map.d.ts └── map.js ├── package.json ├── prettier.config.js ├── scripts └── generate-json.js ├── src ├── generateId.ts └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/README.md -------------------------------------------------------------------------------- /json/118/document.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/118/document.d.ts -------------------------------------------------------------------------------- /json/118/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/118/document.js -------------------------------------------------------------------------------- /json/118/meta.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/118/meta.d.ts -------------------------------------------------------------------------------- /json/118/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/118/meta.js -------------------------------------------------------------------------------- /json/118/page.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/118/page.d.ts -------------------------------------------------------------------------------- /json/118/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/118/page.js -------------------------------------------------------------------------------- /json/118/user.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/118/user.d.ts -------------------------------------------------------------------------------- /json/118/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/118/user.js -------------------------------------------------------------------------------- /json/119/document.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/119/document.d.ts -------------------------------------------------------------------------------- /json/119/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/119/document.js -------------------------------------------------------------------------------- /json/119/meta.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/119/meta.d.ts -------------------------------------------------------------------------------- /json/119/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/119/meta.js -------------------------------------------------------------------------------- /json/119/page.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/119/page.d.ts -------------------------------------------------------------------------------- /json/119/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/119/page.js -------------------------------------------------------------------------------- /json/119/user.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/119/user.d.ts -------------------------------------------------------------------------------- /json/119/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/119/user.js -------------------------------------------------------------------------------- /json/120/document.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/120/document.d.ts -------------------------------------------------------------------------------- /json/120/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/120/document.js -------------------------------------------------------------------------------- /json/120/meta.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/120/meta.d.ts -------------------------------------------------------------------------------- /json/120/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/120/meta.js -------------------------------------------------------------------------------- /json/120/page.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/120/page.d.ts -------------------------------------------------------------------------------- /json/120/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/120/page.js -------------------------------------------------------------------------------- /json/120/user.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/120/user.d.ts -------------------------------------------------------------------------------- /json/120/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/120/user.js -------------------------------------------------------------------------------- /json/121/document.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/121/document.d.ts -------------------------------------------------------------------------------- /json/121/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/121/document.js -------------------------------------------------------------------------------- /json/121/meta.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/121/meta.d.ts -------------------------------------------------------------------------------- /json/121/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/121/meta.js -------------------------------------------------------------------------------- /json/121/page.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/121/page.d.ts -------------------------------------------------------------------------------- /json/121/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/121/page.js -------------------------------------------------------------------------------- /json/121/user.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/121/user.d.ts -------------------------------------------------------------------------------- /json/121/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/121/user.js -------------------------------------------------------------------------------- /json/map.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/map.d.ts -------------------------------------------------------------------------------- /json/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/json/map.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/prettier.config.js -------------------------------------------------------------------------------- /scripts/generate-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/scripts/generate-json.js -------------------------------------------------------------------------------- /src/generateId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/src/generateId.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lona/sketch-file/HEAD/tsconfig.json --------------------------------------------------------------------------------