Skip to content

Commit 43d007d

Browse files
author
Hwashiang Yu
committed
MC-4265: Create Page Builder meta package for Magento Commerce
- Added type file for uiLayout
1 parent 2521ac9 commit 43d007d

File tree

1 file changed

+19
-0
lines changed
  • app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/types

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/**
2+
* Copyright © Magento, Inc. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
5+
6+
/**
7+
* Application entry point.
8+
*
9+
* @param {Object} nodes
10+
* @param {Object} parent
11+
* @param {Boolean} cached
12+
* @param {Boolean} merge
13+
* @returns {Boolean|undefined}
14+
*/
15+
declare function run(nodes: object, parent?: object, cached?: boolean, merge?: boolean): boolean | undefined;
16+
17+
declare module "uiLayout" {
18+
export = run;
19+
}

0 commit comments

Comments
 (0)