Skip to content

Commit

Permalink
publish(client): output for dff5e42
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardssh committed Dec 28, 2021
1 parent d4ad67e commit edcbb6f
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,12 @@ declare interface BrowserMpPool extends EntityMpPool<BrowserMp> {
'new'(url: string): BrowserMp;
}

declare interface CheckpointMp extends EntityMp {}
declare interface CheckpointMp extends EntityMp {
/**
* This property gets/sets the checkpoint visibility.
*/
visible: boolean;
}

declare interface CheckpointMpPool extends EntityMpPool<CheckpointMp> {
'new'(
Expand Down Expand Up @@ -3040,7 +3045,12 @@ declare interface VehicleMpPool extends EntityMpPool<VehicleMp> {
): VehicleMp;
}

declare interface MarkerMp extends EntityMp {}
declare interface MarkerMp extends EntityMp {
/**
* This property gets/sets the marker visibility.
*/
visible: boolean;
}

declare interface MarkerMpPool extends EntityMpPool<MarkerMp> {
'new'(
Expand Down

0 comments on commit edcbb6f

Please sign in to comment.