9 lines
435 B
JavaScript
9 lines
435 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var ChatSourceType;
|
|
(function (ChatSourceType) {
|
|
ChatSourceType[ChatSourceType["System"] = 0] = "System";
|
|
ChatSourceType[ChatSourceType["Agent"] = 1] = "Agent";
|
|
ChatSourceType[ChatSourceType["Object"] = 2] = "Object";
|
|
})(ChatSourceType = exports.ChatSourceType || (exports.ChatSourceType = {}));
|
|
//# sourceMappingURL=ChatSourceType.js.map
|