mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
[feat-216] aligned with change with v4 schema maps
* linted/auto-formatted sorter.service.ts files * changed generics.type to comparator.type
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
|
||||
export enum Comparison {
|
||||
EQUAL = 0,
|
||||
GREATER = 1,
|
||||
LESSER = -1,
|
||||
};
|
||||
|
||||
export type Comparator<T> = (object1: T, object2: T) => number;
|
||||
@@ -1,3 +0,0 @@
|
||||
|
||||
export type Comparator<T> = (object1: T, object2: T) => number;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { ObjectValues } from "shared/helpers/type.helpers";
|
||||
import { SongDetailDiffCharactertistic, SongDiffName } from "./song-details-cache/song-details-cache.model";
|
||||
import { BsmLocalMap } from "./bsm-local-map.interface";
|
||||
import { Comparator } from "../generics.type";
|
||||
import { Comparator } from "../comparator.type";
|
||||
|
||||
export interface BsvMapDetail {
|
||||
automapper: boolean;
|
||||
|
||||
Reference in New Issue
Block a user