/** * Tencent is pleased to support the open source community by making CloudBaseFramework - 云原生一体化部署工具 available. * * Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved. * * Please refer to license text included with this package for license details. */ import { IWeAppPage, IWeAppData, IWebRuntimeAppData } from '../types'; /** * Convert webRuntimeAppData format to weAppData format * @param webRuntimeAppData app content of weAppData format */ export declare function serialize(webRuntimeAppData: IWebRuntimeAppData): IWeAppData; /** * Convert weAppData format to webRuntimeAppData * @param weAppData */ export declare function deserialize(weAppData: IWeAppData): IWebRuntimeAppData; export declare function readCmpInstances(cmps: IWeAppPage['componentInstances']): {};