UNPKG
@nicecode/funny
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
funny,一些有趣的代码,funny code
nicecoders.github.io
nicecoders/nicecode
@nicecode/funny
/
es
/
starSky
/
index.d.ts
15 lines
(14 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * 星空初始化 */
declare
class
NightSky
{
opt
:
any
;
ctx
:
any
;
starList
:
any
[];
constructor
(
opt
:
any
);
init
():
void
;
drawStar
():
void
;
animate
():
void
;
draw
(
val
:
any
):
any
; }
export
default
NightSky
;