From a1adbb0d9eef1cf1c87f84087350200c06f91563 Mon Sep 17 00:00:00 2001 From: Danny Banks Date: Wed, 19 Jun 2019 10:58:52 -0700 Subject: [PATCH] fix(symbols): exporting symbol instance and master (#29) fix #28 --- models/index.d.ts | 4 ++++ models/index.js | 2 ++ 2 files changed, 6 insertions(+) diff --git a/models/index.d.ts b/models/index.d.ts index 72d2b71..403e9dc 100644 --- a/models/index.d.ts +++ b/models/index.d.ts @@ -20,6 +20,8 @@ import ShapeGroup from './ShapeGroup'; import SharedStyle from './SharedStyle'; import Sketch from './Sketch'; import Style from './Style'; +import SymbolInstance from './SymbolInstance'; +import SymbolMaster from './SymbolMaster'; import Text from './Text'; import TextStyle from './TextStyle'; import User from './User'; @@ -47,6 +49,8 @@ export { SharedStyle, Sketch, Style, + SymbolInstance, + SymbolMaster, Text, TextStyle, User, diff --git a/models/index.js b/models/index.js index f11895a..aa390ad 100644 --- a/models/index.js +++ b/models/index.js @@ -35,6 +35,8 @@ module.exports = { SharedStyle: require('./SharedStyle'), Sketch: require('./Sketch'), Style: require('./Style'), + SymbolInstance: require('./SymbolInstance'), + SymbolMaster: require('./SymbolMaster'), Text: require('./Text'), TextStyle: require('./TextStyle'), User: require('./User'),