mirror of
https://github.com/hicccc77/WeFlow.git
synced 2026-03-25 07:16:51 +00:00
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
// 数据收集服务前端接口
|
|
|
|
export async function initCloudControl() {
|
|
return window.electronAPI.cloud.init()
|
|
}
|
|
|
|
export function recordPage(pageName: string) {
|
|
window.electronAPI.cloud.recordPage(pageName)
|
|
}
|