(
path: string,
options: SqliteRuntimeStoreOptions = {},
)
| 222 | } |
| 223 | |
| 224 | export function createSqliteRuntimeStore( |
| 225 | path: string, |
| 226 | options: SqliteRuntimeStoreOptions = {}, |
| 227 | ): SqliteRuntimeStore { |
| 228 | return new SqliteRuntimeStore(path, options); |
| 229 | } |
| 230 | |
| 231 | export class SqliteRuntimeStore |
| 232 | implements |
no outgoing calls