@ui-tars/sdk
Version:
A powerful cross-platform(ANY device/platform) toolkit for building GUI automation agents for UI-TARS
23 lines (22 loc) • 596 B
JavaScript
/**
* Copyright (c) 2025 Bytedance, Inc. and its affiliates.
* SPDX-License-Identifier: Apache-2.0
*/
import { BaseModel, BaseOperator } from "./base/index.mjs";
function _define_property(obj, key, value) {
if (key in obj) Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
else obj[key] = value;
return obj;
}
class Operator extends BaseOperator {
}
_define_property(Operator, "MANUAL", void 0);
class Model extends BaseModel {
}
export { Model, Operator };
//# sourceMappingURL=types.mjs.map