mirror of https://github.com/abpframework/abp.git
2 changed files with 27 additions and 12 deletions
@ -1,16 +1,21 @@ |
|||
export interface Schema { |
|||
/** |
|||
* The URL to get API configuration from |
|||
* The name of the module to generate code for |
|||
*/ |
|||
apiUrl?: string; |
|||
module?: string; |
|||
|
|||
/** |
|||
* The name of the module to generate code for |
|||
* The project to place the generated code in |
|||
*/ |
|||
module?: string; |
|||
project?: string; |
|||
|
|||
/** |
|||
* The path to place the generated code at |
|||
*/ |
|||
out?: string; |
|||
path?: string; |
|||
|
|||
/** |
|||
* The URL to get API configuration from |
|||
*/ |
|||
source?: string; |
|||
} |
|||
|
|||
Loading…
Reference in new issue