Last active
May 31, 2018 21:21
-
-
Save Falieson/40792a6f280662806ef5ea104405eaa9 to your computer and use it in GitHub Desktop.
S2. F02. Init HelloWorld (ARTICLE: TS-Module w/ Declarations (Part 1/4))
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
/** TS-Module w/ Declarations (Part 1/4) | |
* http://TGRstack.com/#ts-module_articles_part-1 | |
* ./src/HelloWorld.ts (Section 2. Figure 02.) | |
**/ | |
function HelloWorldMaker(first: string, second: string): string { | |
return `${first} ${second}` | |
} | |
export default HelloWorldMaker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment