MCPcopy Create free account
hub / github.com/expo/examples / ItemEntity

Interface ItemEntity

with-libsql/App.tsx:22–26  ·  view source on GitHub ↗

* The Item type represents a single item in database.

Source from the content-addressed store, hash-verified

20 * The Item type represents a single item in database.
21 */
22interface ItemEntity {
23 id: number;
24 done: boolean;
25 value: string;
26}
27
28const libSQLOptions = {
29 url: process.env.EXPO_PUBLIC_LIBSQL_URL,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected