Last active
August 9, 2021 13:41
-
-
Save chunleng/2f6af0105308a8c074c2b6d0a8562183 to your computer and use it in GitHub Desktop.
Medium: OpenAPI and CodeGen - Codegen Part 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* @export | |
* @interface Bar | |
*/ | |
export interface Bar { | |
/** | |
* | |
* @type {Array<string>} | |
* @memberof Bar | |
*/ | |
items?: Array<string>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment