Rename common to TypeScript

This commit is contained in:
Danila Fedorin 2021-09-29 18:10:09 -07:00
parent 64ba656043
commit e53f3d23d5
3 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ limitations under the License.
*/
import {BaseObservableList} from "./BaseObservableList";
import {findAndUpdateInArray} from "./common.js";
import {findAndUpdateInArray} from "./common";
export class BaseMappedList extends BaseObservableList {
constructor(sourceList, mapper, updater, removeCallback) {

View file

@ -16,7 +16,7 @@ limitations under the License.
import {BaseObservableList} from "./BaseObservableList";
import {sortedIndex} from "../../utils/sortedIndex.js";
import {findAndUpdateInArray} from "./common.js";
import {findAndUpdateInArray} from "./common";
export class SortedArray extends BaseObservableList {
constructor(comparator) {