UNPKG

@nicecode/funny

Version:

funny,一些有趣的代码,funny code

15 lines (14 loc) 241 B
/** * 星空初始化 */ 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;