Rename the event identifier in the type documentation
This commit is contained in:
parent
988810b9eb
commit
7db70bc4ec
1 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
import { ServerResponse } from "../ServerResponse";
|
import { ServerResponse } from "../ServerResponse";
|
||||||
|
|
||||||
/** The data the client must provide in the `SaveShip` event. */
|
/** The data the client must provide in the `put.player.design` event. */
|
||||||
export interface SaveShip {
|
export interface SaveShip {
|
||||||
colour: string;
|
colour: string;
|
||||||
ship: string;
|
ship: string;
|
||||||
|
|
@ -8,7 +8,7 @@ export interface SaveShip {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The event that get's sent out to all the other players on a successful
|
* The event that get's sent out to all the other players on a successful
|
||||||
* `SaveShip` event
|
* `put.player.design` event
|
||||||
*/
|
*/
|
||||||
export interface DesignUpdate {
|
export interface DesignUpdate {
|
||||||
player: string;
|
player: string;
|
||||||
|
|
@ -16,5 +16,5 @@ export interface DesignUpdate {
|
||||||
colour: string;
|
colour: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** The response to the client that triggered the `SaveShip` event. */
|
/** The response to the client that triggered the `put.player.design` event. */
|
||||||
export interface SaveShipResponse extends ServerResponse {}
|
export interface SaveShipResponse extends ServerResponse {}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue