@webflow/designer-extension-typings 0.2.0-beta.6 → 0.2.0-beta.7
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/assets.d.ts +7 -0
- package/package.json +1 -1
- package/pages.d.ts +4 -4
- package/tsconfig.json +1 -1
package/assets.d.ts
ADDED
package/package.json
CHANGED
package/pages.d.ts
CHANGED
|
@@ -389,13 +389,13 @@ interface Page {
|
|
|
389
389
|
*/
|
|
390
390
|
isHomepage(): Promise<boolean>;
|
|
391
391
|
/**
|
|
392
|
-
* Retrieves the
|
|
392
|
+
* Retrieves the path that will be used when the page is published.
|
|
393
393
|
* @example
|
|
394
394
|
* ```ts
|
|
395
|
-
* let
|
|
396
|
-
* console.log("Publish
|
|
395
|
+
* let publishPath = await myPage.getPublishPath();
|
|
396
|
+
* console.log("Publish path: ", publishPath);
|
|
397
397
|
*/
|
|
398
|
-
|
|
398
|
+
getPublishPath(): Promise<null | string>;
|
|
399
399
|
}
|
|
400
400
|
|
|
401
401
|
type FolderId = string;
|