@tarojs/runtime 3.5.0-alpha.1 → 3.5.0-alpha.10

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.
@@ -58,8 +58,11 @@ export interface PageLifeCycle extends Show {
58
58
  onUnload?(): void;
59
59
  }
60
60
  export interface PageInstance extends PageLifeCycle {
61
+ /** 页面的初始数据 */
61
62
  data?: Record<string, unknown>;
63
+ /** 页面路径 */
62
64
  path?: string;
65
+ /** 页面的组件选项 */
63
66
  options?: Record<string, unknown>;
64
67
  }
65
68
  interface Show {