Skip to content

Commit

Permalink
rename exported options after rename for #853
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegreenberg committed Jun 18, 2024
1 parent f5442c3 commit d507f25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/keyboard/help/TimingControlsKeyboardHelpSection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ type SelfOptions = {
pauseOrPlayActionDescriptionString?: string | TReadOnlyProperty<string>;
};
type ParentOptions = KeyboardHelpSectionOptions;
export type TimeControlKeyboardHelpSectionOptions = SelfOptions & ParentOptions;
export type TimingControlKeyboardHelpSectionOptions = SelfOptions & ParentOptions;

class TimingControlsKeyboardHelpSection extends KeyboardHelpSection {
public constructor( providedOptions?: TimeControlKeyboardHelpSectionOptions ) {
const options = optionize<TimeControlKeyboardHelpSectionOptions, SelfOptions, ParentOptions>()( {
public constructor( providedOptions?: TimingControlKeyboardHelpSectionOptions ) {
const options = optionize<TimingControlKeyboardHelpSectionOptions, SelfOptions, ParentOptions>()( {
headingString: timingControlsStringProperty,
pauseOrPlayActionString: pauseOrPlayActionStringProperty,
pauseOrPlayActionDescriptionString: pauseOrPlayActionDescriptionStringProperty
Expand Down

0 comments on commit d507f25

Please sign in to comment.