@wrathofzombies/my-cool-demo
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -12,2 +12,3 @@ (function (factory) { | ||
function ContentControl(name, context) { | ||
this.name = name; | ||
this.context = context; | ||
@@ -14,0 +15,0 @@ } |
@@ -12,2 +12,3 @@ (function (factory) { | ||
function InlinePicture(name, context) { | ||
this.name = name; | ||
this.context = context; | ||
@@ -14,0 +15,0 @@ } |
@@ -8,3 +8,3 @@ { | ||
}, | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"dependencies": { | ||
@@ -11,0 +11,0 @@ "core-js": "^2.4.1" |
import {WordRequestContext} from '../request.context'; | ||
export class ContentControl { | ||
constructor(name: string, public context: WordRequestContext) { | ||
constructor(public name: string, public context: WordRequestContext) { | ||
} | ||
} |
import {WordRequestContext} from '../request.context'; | ||
export class InlinePicture { | ||
constructor(name: string, public context: WordRequestContext) { | ||
constructor(public name: string, public context: WordRequestContext) { | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
42334
803