JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

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);