JSFiddle - React, Tailwind, and code Playground
JavaScript
var PostModel = /** @class */ (function () {
function PostModel(data) {
Object.assign(this, data);
}
return PostModel;
}());
console.error('PostModel', new PostModel({foo: 1, bar: 2}), typeof PostModel);