aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/apiDemo/src/models/module.ts
blob: aab8db33358954a5cff3193e2a1f3e0e4b92cdd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
export type Module = {
  name: string;
  revision: string; 
  namespace: string;
}

export type ModuleResult = {
  modules: {
    module: Module[]
  }
}