diff options
Diffstat (limited to 'sdnr/wt/odlux/apps/apiDemo/src/models')
-rw-r--r-- | sdnr/wt/odlux/apps/apiDemo/src/models/module.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sdnr/wt/odlux/apps/apiDemo/src/models/module.ts b/sdnr/wt/odlux/apps/apiDemo/src/models/module.ts index abf86b76e..48772a785 100644 --- a/sdnr/wt/odlux/apps/apiDemo/src/models/module.ts +++ b/sdnr/wt/odlux/apps/apiDemo/src/models/module.ts @@ -19,10 +19,10 @@ export type Module = { name: string; revision: string; namespace: string; -} +}; export type ModuleResult = { modules: { - module: Module[] - } -}
\ No newline at end of file + module: Module[]; + }; +};
\ No newline at end of file |