20 lines
555 B
TypeScript
20 lines
555 B
TypeScript
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
|
// This file is automatically generated. DO NOT EDIT
|
|
|
|
/**
|
|
* StartupService 开机启动服务
|
|
* @module
|
|
*/
|
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore: Unused imports
|
|
import {Call as $Call, Create as $Create} from "@wailsio/runtime";
|
|
|
|
/**
|
|
* SetEnabled 设置开机启动状态
|
|
*/
|
|
export function SetEnabled(enabled: boolean): Promise<void> & { cancel(): void } {
|
|
let $resultPromise = $Call.ByID(2911601468, enabled) as any;
|
|
return $resultPromise;
|
|
}
|