ai-code-writer
Version:
An AI code writer application using OpenAI APIs for audio transcription and chat completion.
19 lines (18 loc) • 601 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const CommandActionType_1 = __importDefault(require("./CommandActionType"));
class ActionEntity {
constructor() {
this.type = CommandActionType_1.default.PAUSE;
this.actionType = 'command';
this.filePath = '';
this.content = '';
this.targetFilePath = '';
this.id = '';
this.name = '';
}
}
exports.default = ActionEntity;