@knowmax/genericlist-core
Version:
Knowmax Generic list with basic CRUD support without any user interface implementation.
16 lines (15 loc) • 530 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 './utils';
export * from './list';
export * from './types';