@dosgato/templating 0.0.35 → 0.0.36
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/component.d.ts +2 -2
- package/package.json +1 -1
package/dist/component.d.ts
CHANGED
|
@@ -171,11 +171,11 @@ export interface ComponentData {
|
|
|
171
171
|
areas?: Record<string, ComponentData[]>;
|
|
172
172
|
}
|
|
173
173
|
export interface PageData extends ComponentData {
|
|
174
|
-
savedAtVersion:
|
|
174
|
+
savedAtVersion: string;
|
|
175
175
|
}
|
|
176
176
|
export interface DataData {
|
|
177
177
|
templateKey: string;
|
|
178
|
-
savedAtVersion:
|
|
178
|
+
savedAtVersion: string;
|
|
179
179
|
}
|
|
180
180
|
export interface ContextBase {
|
|
181
181
|
/**
|