import { App } from "vue"; import { PcOptions } from "./@type"; /** * 初始化PC框架 * 创建前端基础框架,配置前端环境变量 */ declare let createPcAsync: (app: App, options: PcOptions) => Promise; export * from "./@type"; export { createPcAsync };