mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 13:13:43 +00:00
fixed getter
This commit is contained in:
parent
4a0aaa8914
commit
02c0f27d64
2 changed files with 2 additions and 2 deletions
2
typescript/phaser.comments.d.ts
vendored
2
typescript/phaser.comments.d.ts
vendored
|
@ -20528,7 +20528,7 @@ declare module Phaser {
|
|||
* @param state Generator state to be set.
|
||||
* @return The current state of the generator.
|
||||
*/
|
||||
state(state: string): string;
|
||||
state(state?: string): string;
|
||||
|
||||
/**
|
||||
* Returns a random timestamp between min and max, or between the beginning of 2000 and the end of 2020 if min and max aren't specified.
|
||||
|
|
2
typescript/phaser.d.ts
vendored
2
typescript/phaser.d.ts
vendored
|
@ -3803,7 +3803,7 @@ declare module Phaser {
|
|||
real(): number;
|
||||
realInRange(min: number, max: number): number;
|
||||
sow(seeds: number[]): void;
|
||||
state(state: string): string;
|
||||
state(state?: string): string;
|
||||
timestamp(min: number, max: number): number;
|
||||
uuid(): number;
|
||||
weightedPick<T>(ary: T[]): T;
|
||||
|
|
Loading…
Reference in a new issue