Skip to content

Commit 02c0f27

Browse files
committed
fixed getter
1 parent 4a0aaa8 commit 02c0f27

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

typescript/phaser.comments.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20528,7 +20528,7 @@ declare module Phaser {
2052820528
* @param state Generator state to be set.
2052920529
* @return The current state of the generator.
2053020530
*/
20531-
state(state: string): string;
20531+
state(state?: string): string;
2053220532

2053320533
/**
2053420534
* 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.

typescript/phaser.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3803,7 +3803,7 @@ declare module Phaser {
38033803
real(): number;
38043804
realInRange(min: number, max: number): number;
38053805
sow(seeds: number[]): void;
3806-
state(state: string): string;
3806+
state(state?: string): string;
38073807
timestamp(min: number, max: number): number;
38083808
uuid(): number;
38093809
weightedPick<T>(ary: T[]): T;

0 commit comments

Comments
 (0)