@dosgato/templating 0.0.76 → 0.0.77
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/render.d.ts +2 -2
- package/package.json +1 -1
package/dist/render.d.ts
CHANGED
|
@@ -134,10 +134,10 @@ export interface APIClient {
|
|
|
134
134
|
* "extra" is a list of dot-separated paths to page data that you need to help you build
|
|
135
135
|
* your interface. For example, ['hideInNav'] would fill page.extra with { hideInNav: true }.
|
|
136
136
|
*/
|
|
137
|
-
getNavigation: ({ depth, extra,
|
|
137
|
+
getNavigation: ({ depth, extra, absolute }: {
|
|
138
138
|
depth?: number;
|
|
139
139
|
extra?: string[];
|
|
140
|
-
|
|
140
|
+
absolute?: boolean;
|
|
141
141
|
}) => Promise<PageForNavigation>;
|
|
142
142
|
/**
|
|
143
143
|
* Get data entries by link or folder link
|