@knowmax/genericlist-fluentuiv9
Version:
Knowmax Generic list with basic CRUD support with Fluent V9 user interface implementation.
14 lines (13 loc) • 491 B
JavaScript
// From MobX documentation. useDefineForClassFields in tsconfig must be set in order to allow MobX to work with class fields.
if (!new class {
constructor() {
Object.defineProperty(this, "x", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
}
}().hasOwnProperty('x'))
throw new Error('Transpiler is not configured correctly - required for MobX support');
export * from './components/list';