-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
魏银鹏
committed
Nov 8, 2019
1 parent
0ae14d7
commit 49e2d4d
Showing
40 changed files
with
15,849 additions
and
273 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
"use strict"; | ||
/// <reference path="index.ts" /> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/// <reference path="index.ts" /> | ||
namespace V{ | ||
export interface AA{ | ||
a:string | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,4 @@ | ||
"use strict"; | ||
var Color; | ||
(function (Color) { | ||
Color[Color["Red"] = 0] = "Red"; | ||
Color[Color["Pink"] = 1] = "Pink"; | ||
Color[Color["Green"] = 2] = "Green"; | ||
})(Color || (Color = {})); | ||
console.log(Color); | ||
for (var item in Color) { | ||
if (isNaN(Number(item))) { | ||
console.log(item); | ||
var dom = document.createElement('p'); | ||
dom.innerText = item; | ||
document.body.appendChild(dom); | ||
} | ||
} | ||
var aa = { | ||
a: '2' | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
enum Color {Red, Pink, Green} | ||
console.log(Color) | ||
for (let item in Color) { | ||
if (isNaN(Number(item))) { | ||
console.log(item); | ||
const dom = document.createElement('p') | ||
dom.innerText = item; | ||
document.body.appendChild(dom) | ||
} | ||
const aa :V.AA = { | ||
a:'2' | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
interface StringValidator { | ||
isAccept(s:string):boolean | ||
} |
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.