9s-fe-core
Version:
Core functionalities for authentication, configuration, and repository management.
14 lines (13 loc) • 378 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConfirmationData = void 0;
exports.ConfirmationData = {
fromJson(json) {
return {
title: json['title'],
description: json['description'],
messageSuccess: json['message_success'],
buttonText: json['button_text'],
};
},
};