fix(core): remove old code for outdated objectstorage

This commit is contained in:
Philipp Kunz 2018-01-07 18:15:14 +01:00
parent 05938bf2af
commit bd30da1c4a

View File

@ -1,12 +0,0 @@
import * as plugins from './smartdata.plugins'
import { Db } from './smartdata.classes.db'
import { DbDoc } from './smartdata.classes.dbdoc'
import { DbTable } from './smartdata.classes.dbcollection'
export let getObjectDoc = (nameArg,dbArg: Db) => {
let objectDoc = new DbDoc()
objectDoc.name = nameArg
objectDoc.collection = new DbTable(objectDoc, dbArg)
return objectDoc
}