File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed
@types/persisters/persister-sqlite-bun
persister-durable-object-storage
synchronizers/synchronizer-ws-server-simple Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 11/// persister-sqlite-bun
22import type { Database } from 'bun:sqlite' ;
3- import type { MergeableStore } from '../../mergeable-store/index.js ' ;
4- import type { Store } from '../../store/index.js ' ;
5- import type { DatabasePersisterConfig , Persister , Persists } from '../index.js ' ;
3+ import type { MergeableStore } from '../../mergeable-store/index.d.ts ' ;
4+ import type { Store } from '../../store/index.d.ts ' ;
5+ import type { DatabasePersisterConfig , Persister , Persists } from '../index.d.ts ' ;
66
77/// SqliteBunPersister
88export interface SqliteBunPersister
Original file line number Diff line number Diff line change 11/// persister-sqlite-bun
22import type { Database } from 'bun:sqlite' ;
3- import type { MergeableStore } from '../../../mergeable-store/with-schemas/index.js ' ;
3+ import type { MergeableStore } from '../../../mergeable-store/with-schemas/index.d.ts ' ;
44import type {
55 OptionalSchemas ,
66 Store ,
7- } from '../../../store/with-schemas/index.js ' ;
7+ } from '../../../store/with-schemas/index.d.ts ' ;
88import type {
99 DatabasePersisterConfig ,
1010 Persister ,
1111 Persists ,
12- } from '../../with-schemas/index.js ' ;
12+ } from '../../with-schemas/index.d.ts ' ;
1313
1414/// SqliteBunPersister
1515export interface SqliteBunPersister < Schemas extends OptionalSchemas >
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import type {
1515import type {
1616 DurableObjectStoragePersister ,
1717 createDurableObjectStoragePersister as createDurableObjectStoragePersisterDecl ,
18- } from '../../@types/persisters/persister-durable-object-storage/index.js ' ;
18+ } from '../../@types/persisters/persister-durable-object-storage/index.d.ts ' ;
1919import type { Cell , Value } from '../../@types/store/index.d.ts' ;
2020import { jsonStringWithUndefined } from '../../common/json.ts' ;
2121import { IdMap , mapNew , mapSet , mapToObj } from '../../common/map.ts' ;
Original file line number Diff line number Diff line change 11import { Database } from 'bun:sqlite' ;
2- import type { MergeableStore } from '../../@types/mergeable-store/index.js ' ;
3- import type { DatabasePersisterConfig } from '../../@types/persisters/index.js ' ;
2+ import type { MergeableStore } from '../../@types/mergeable-store/index.d.ts ' ;
3+ import type { DatabasePersisterConfig } from '../../@types/persisters/index.d.ts ' ;
44import type {
55 SqliteBunPersister ,
66 createSqliteBunPersister as createSqliteBunPersisterDecl ,
77} from '../../@types/persisters/persister-sqlite-bun/index.d.ts' ;
8- import type { Store } from '../../@types/store/index.js ' ;
8+ import type { Store } from '../../@types/store/index.d.ts ' ;
99import { IdObj } from '../../common/obj.ts' ;
1010import { createCustomSqlitePersister } from '../common/database/sqlite.ts' ;
1111
Original file line number Diff line number Diff line change 11import { WebSocket , WebSocketServer } from 'ws' ;
2- import type { Id } from '../../@types/common/index.js ' ;
2+ import type { Id } from '../../@types/common/index.d.ts ' ;
33import type {
44 WsServerSimple ,
55 createWsServerSimple as createWsServerSimpleDecl ,
6- } from '../../@types/synchronizers/synchronizer-ws-server-simple/index.js ' ;
6+ } from '../../@types/synchronizers/synchronizer-ws-server-simple/index.d.ts ' ;
77import { collClear , collDel , collIsEmpty } from '../../common/coll.ts' ;
88import {
99 IdMap2 ,
You can’t perform that action at this time.
0 commit comments