new lib version [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2020-12-30 18:01:28 +00:00
parent f56906e640
commit 75fa469974
36 changed files with 411 additions and 6 deletions

10
dist/models/ResponseStatsRunner.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
import type { RunnerGroup } from './RunnerGroup';
export declare type ResponseStatsRunner = {
id: number;
firstname: string;
middlename: string;
lastname: string;
distance: number;
donationAmount: number;
group: RunnerGroup;
};