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