import Store from './../src/Store.ts' /** * store - abstract class * * @author Björn Hase * @license http://opensource.org/licenses/MIT The MIT License * @link https://gitea.node001.net/HerrHase/urban-filehub.git * */ class ItemStore extends Store { /** * * * @param {tableName} * */ constructor(db) { super(db, 'items') } } export default ItemStore