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