- Converting all to Typescript

- Installing 1.0.0.beta Quasar Upgrade
   - (Part 1 - Upgrade Components)
This commit is contained in:
Paolo Arena
2019-03-11 19:21:10 +01:00
parent bb3be0ec16
commit 74ecc4f278
46 changed files with 5986 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
// importScripts('/statics/js/immortal-db.min.js');
/*
const cfgenv = {
website: 'http://localhost:8081',
serverweb: 'http://localhost:3000',
dbname: 'mydb3',
dbversion: 10,
}
*/
/*
async function clearAllDataImmortal(table) {
console.log('clearAllDataImmortal', table)
const db = ImmortalDB.ImmortalDB
await db.remove(table)
}
async function writeDataImmortal(table, datavalue) {
console.log('writeDataImmortal', table, datavalue)
const db = ImmortalDB.ImmortalDB
await db.set(table, datavalue)
}
*/