jl-sprt-core 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Match/scores.d.ts +3 -3
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/Match/scores.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export interface IVolleyScore {
|
|
|
6
6
|
setsWon: number;
|
|
7
7
|
setPoints: number[];
|
|
8
8
|
}
|
|
9
|
-
export interface
|
|
9
|
+
export interface IFootballScore {
|
|
10
10
|
goals: number;
|
|
11
11
|
}
|
|
12
12
|
export interface IAmericanFootballScore {
|
|
@@ -17,5 +17,5 @@ export interface IAmericanFootballScore {
|
|
|
17
17
|
twoPointConversions: number;
|
|
18
18
|
safeties: number;
|
|
19
19
|
}
|
|
20
|
-
export type TMatchScore = number | IVolleyScore |
|
|
21
|
-
export type TSerieScore = number | IVolleyScore |
|
|
20
|
+
export type TMatchScore = number | IVolleyScore | IFootballScore | IAmericanFootballScore;
|
|
21
|
+
export type TSerieScore = number | IVolleyScore | IFootballScore | IAmericanFootballScore;
|
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export { CATEGORIES, getCategoryList } from './types';
|
|
|
12
12
|
export type { TypeMatchState } from './Match/A_Match';
|
|
13
13
|
export type { IA_ResultInfo, TypeTotalScore } from './Match/A_Result';
|
|
14
14
|
export type { IA_ResultSerieInfo } from './Match/A_ResultSerie';
|
|
15
|
-
export type { IVolleyScore,
|
|
15
|
+
export type { IVolleyScore, IFootballScore, IAmericanFootballScore, TMatchScore, TSerieScore } from './Match/scores';
|
|
16
16
|
export type { ISportProfile, AnySportProfile, IMatchCreationInfo, ISerieCreationInfo } from './profiles/ISportProfile';
|
|
17
17
|
export { A_TeamTableItem, type AnyTeamTableItem, type SortFunc } from './profiles/A_TeamTableItem';
|
|
18
18
|
export type { arr2, TypeBaseStageOption, TypeCategory, TypeCategoryList } from './types';
|