@dosgato/templating 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apitemplate.d.ts +4 -0
- package/dist/links.d.ts +1 -0
- package/package.json +1 -1
package/dist/apitemplate.d.ts
CHANGED
|
@@ -11,6 +11,10 @@ export interface APITemplate {
|
|
|
11
11
|
* edu.txstate.RichTextEditor could be useful but no special format is required.
|
|
12
12
|
*/
|
|
13
13
|
templateKey: string;
|
|
14
|
+
/**
|
|
15
|
+
* A uniquey human-readable name describing this template
|
|
16
|
+
*/
|
|
17
|
+
name: string;
|
|
14
18
|
/**
|
|
15
19
|
* Each template must declare its areas and the template keys of components that will be
|
|
16
20
|
* permitted inside each area. The list of allowed component templates can be updated beyond
|
package/dist/links.d.ts
CHANGED