Start migrating utils.js to TypeScript

This commit is contained in:
Danila Fedorin 2021-08-09 13:56:20 -07:00
parent caed99df69
commit 4fb93ad104
12 changed files with 11 additions and 11 deletions

View file

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import {iterateCursor, reqAsPromise} from "./utils.js";
import {iterateCursor, reqAsPromise} from "./utils";
export class QueryTarget {
constructor(target) {

View file

@ -16,7 +16,7 @@ limitations under the License.
import {Transaction} from "./Transaction.js";
import { STORE_NAMES, StorageError } from "../common";
import { reqAsPromise } from "./utils.js";
import { reqAsPromise } from "./utils";
const WEBKITEARLYCLOSETXNBUG_BOGUS_KEY = "782rh281re38-boguskey";

View file

@ -15,7 +15,7 @@ limitations under the License.
*/
import {Storage} from "./Storage.js";
import { openDatabase, reqAsPromise } from "./utils.js";
import { openDatabase, reqAsPromise } from "./utils";
import { exportSession, importSession } from "./export.js";
import { schema } from "./schema.js";
import { detectWebkitEarlyCloseTxnBug } from "./quirks.js";

View file

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import {txnAsPromise} from "./utils.js";
import {txnAsPromise} from "./utils";
import {StorageError} from "../common";
import {Store} from "./Store.js";
import {SessionStore} from "./stores/SessionStore.js";

View file

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import { iterateCursor, txnAsPromise } from "./utils.js";
import { iterateCursor, txnAsPromise } from "./utils";
import { STORE_NAMES } from "../common";
export async function exportSession(db) {

View file

@ -15,7 +15,7 @@ limitations under the License.
*/
import {openDatabase, txnAsPromise, reqAsPromise} from "./utils.js";
import {openDatabase, txnAsPromise, reqAsPromise} from "./utils";
// filed as https://bugs.webkit.org/show_bug.cgi?id=222746
export async function detectWebkitEarlyCloseTxnBug(idbFactory) {

View file

@ -1,4 +1,4 @@
import {iterateCursor, reqAsPromise} from "./utils.js";
import {iterateCursor, reqAsPromise} from "./utils";
import {RoomMember, EVENT_TYPE as MEMBER_EVENT_TYPE} from "../../room/members/RoomMember.js";
import {RoomMemberStore} from "./stores/RoomMemberStore.js";
import {SessionStore} from "./stores/SessionStore.js";

View file

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import { encodeUint32, decodeUint32 } from "../utils.js";
import { encodeUint32, decodeUint32 } from "../utils";
import {KeyLimits} from "../../common";
function encodeKey(roomId, queueIndex) {

View file

@ -16,7 +16,7 @@ limitations under the License.
import {EventKey} from "../../../room/timeline/EventKey.js";
import { StorageError } from "../../common";
import { encodeUint32 } from "../utils.js";
import { encodeUint32 } from "../utils";
import {KeyLimits} from "../../common";
function encodeKey(roomId, fragmentId, eventIndex) {

View file

@ -16,7 +16,7 @@ limitations under the License.
import { StorageError } from "../../common";
import {KeyLimits} from "../../common";
import { encodeUint32 } from "../utils.js";
import { encodeUint32 } from "../utils";
function encodeKey(roomId, fragmentId) {
return `${roomId}|${encodeUint32(fragmentId)}`;

View file

@ -16,7 +16,7 @@ limitations under the License.
// polyfills needed for IE11
import Promise from "../../../lib/es6-promise/index.js";
import {checkNeedsSyncPromise} from "../../matrix/storage/idb/utils.js";
import {checkNeedsSyncPromise} from "../../matrix/storage/idb/utils";
if (typeof window.Promise === "undefined") {
window.Promise = Promise;