fixed getter

This commit is contained in:
Stafford Williams 2016-02-02 13:26:47 +11:00
parent 4a0aaa8914
commit 02c0f27d64
2 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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;