mirror of https://github.com/abpframework/abp.git
3 changed files with 40 additions and 5 deletions
@ -1 +1,5 @@ |
|||
#!/usr/bin/env node |
|||
import { APIDefination } from './types/api-defination'; |
|||
|
|||
export async function angular(data: APIDefination.Response, selectedModules: string[]) { |
|||
selectedModules.forEach(() =>) |
|||
} |
|||
|
|||
@ -0,0 +1,9 @@ |
|||
export namespace APIDefination { |
|||
export interface Response { |
|||
modules: Modules; |
|||
} |
|||
|
|||
export interface Modules { |
|||
[key: string]: any; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue