├── .flowconfig ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── README.md ├── bitmapLayer.json ├── borderedShape.json ├── exampleAB.json ├── roundRect.json ├── roundRectWithShadow.json ├── textLayer.json ├── textLayerWithAnotherFill.json └── wrappingText.json ├── package.json ├── testCases ├── testShapeGroup.js ├── testSymbolInstance.js ├── testSymbolMaster.js └── testTextLayer.js └── types.js /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log* 3 | node_modules 4 | lib 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/bitmapLayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/examples/bitmapLayer.json -------------------------------------------------------------------------------- /examples/borderedShape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/examples/borderedShape.json -------------------------------------------------------------------------------- /examples/exampleAB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/examples/exampleAB.json -------------------------------------------------------------------------------- /examples/roundRect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/examples/roundRect.json -------------------------------------------------------------------------------- /examples/roundRectWithShadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/examples/roundRectWithShadow.json -------------------------------------------------------------------------------- /examples/textLayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/examples/textLayer.json -------------------------------------------------------------------------------- /examples/textLayerWithAnotherFill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/examples/textLayerWithAnotherFill.json -------------------------------------------------------------------------------- /examples/wrappingText.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/examples/wrappingText.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/package.json -------------------------------------------------------------------------------- /testCases/testShapeGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/testCases/testShapeGroup.js -------------------------------------------------------------------------------- /testCases/testSymbolInstance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/testCases/testSymbolInstance.js -------------------------------------------------------------------------------- /testCases/testSymbolMaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/testCases/testSymbolMaster.js -------------------------------------------------------------------------------- /testCases/testTextLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/testCases/testTextLayer.js -------------------------------------------------------------------------------- /types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darknoon/sketchapp-json-flow-types/HEAD/types.js --------------------------------------------------------------------------------