Mobile app PoC (#281)

Initial checkin of mobile "native" app
This commit is contained in:
Zef Hemel
2023-01-08 12:24:12 +01:00
committed by GitHub
parent dc7de9d8f9
commit 0365673c41
61 changed files with 5190 additions and 155 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
import { FullTextSearchOptions } from "../../plug-api/plugos-syscall/fulltext.ts";
import { AsyncSQLite } from "../../plugos/sqlite/async_sqlite.ts";
import { ISQLite } from "../sqlite/sqlite_interface.ts";
import { SysCallMapping } from "../system.ts";
export async function ensureFTSTable(
db: AsyncSQLite,
db: ISQLite,
tableName: string,
) {
const result = await db.query(
@@ -20,7 +20,7 @@ export async function ensureFTSTable(
}
export function fullTextSearchSyscalls(
db: AsyncSQLite,
db: ISQLite,
tableName: string,
): SysCallMapping {
return {