This repository has been archived by the owner on Feb 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
typeDefinitions.handlebars
36 lines (33 loc) · 1.86 KB
/
typeDefinitions.handlebars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
______ ______ ______ ______ ______ ______ ______ ______ ______ ______ ______
|______||______||______||______||______||______||______||______||______||______||______|
___ _ _____ _ _
/ _ \ | | | __ \ | | | |
/ /_\ \ _ _ | |_ ___ | | \/ ___ _ __ ___ _ __ __ _ | |_ ___ __| |
| _ || | | || __|/ _ \ | | __ / _ \| '_ \ / _ \| '__|/ _` || __|/ _ \ / _` |
| | | || |_| || |_| (_) | | |_\ \| __/| | | || __/| | | (_| || |_| __/| (_| |
\_| |_/ \__,_| \__|\___/ \____/ \___||_| |_| \___||_| \__,_| \__|\___| \__,_|
______ _ _ _ ___ ___ _ _ __
| _ \ | \ | | | | | \/ | | |(_) / _|
| | | | ___ | \| | ___ | |_ | . . | ___ __| | _ | |_ _ _
| | | |/ _ \ | . ` | / _ \ | __| | |\/| | / _ \ / _` || || _|| | | |
| |/ /| (_) | | |\ || (_) || |_ | | | || (_) || (_| || || | | |_| |
|___/ \___/ \_| \_/ \___/ \__| \_| |_/ \___/ \__,_||_||_| \__, |
__/ |
|___/
______ ______ ______ ______ ______ ______ ______ ______ ______ ______ ______
|______||______||______||______||______||______||______||______||______||______||______|
Types are autogenerated from swagger.json file
*/
{{#if tag}}
{{#each tag}}
{{this}}
{{/each}}
{{/if}}
{{#each types}}
export {{../generatedTypes}} {{typeName}} {
{{#each properties}}
{{propertyName}}{{../../membersOptional}} : {{typeName}}
{{/each}}
}
{{/each}}