new lib version [CI SKIP]

This commit is contained in:
2020-12-13 18:49:21 +00:00
parent 55cdf79f9c
commit 823fb926a5
87 changed files with 859 additions and 0 deletions

11
dist/models/ResponseRunner.d.ts vendored Normal file
View File

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