Skip to content

Commit

Permalink
Bump typedoc from 0.25.4 to 0.25.7 (#3549)
Browse files Browse the repository at this point in the history
* Bump typedoc from 0.25.4 to 0.25.7

Bumps [typedoc](https://github.com/TypeStrong/TypeDoc) from 0.25.4 to 0.25.7.
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.25.4...v0.25.7)

---
updated-dependencies:
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix doc generation warnings

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Harel M <[email protected]>
  • Loading branch information
dependabot[bot] and HarelM authored Jan 9, 2024
1 parent b25764e commit c6f3a11
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 17 deletions.
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.4",
"typedoc": "^0.25.7",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-missing-exports": "^2.1.0",
"typescript": "^5.3.3",
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ class MapLibreGL {
* Adds a [custom source type](#Custom Sources), making it available for use with
* {@link Map#addSource}.
* @param name - The name of the source type; source definition objects use this name in the `{type: ...}` field.
* @param SourceType - A {@link SourceClass} - which is a constructor for the {@link Source} interface.
* @returns a promise that is resolved when the source type is ready or with an error argument if there is an error.
* @param sourceType - A {@link SourceClass} - which is a constructor for the `Source` interface.
* @returns a promise that is resolved when the source type is ready or rejected with an error.
*/
static addSourceType = (name: string, sourceType: SourceClass) => addSourceType(name, sourceType);

Expand Down
1 change: 0 additions & 1 deletion src/source/geojson_source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,6 @@ export class GeoJSONSource extends Evented implements Source {
* For clustered sources, fetches the zoom at which the given cluster expands.
*
* @param clusterId - The value of the cluster's `cluster_id` property.
* @param callback - A callback to be called when the zoom value is retrieved (`(error, zoom) => { ... }`).
* @returns a promise that is resolved with the zoom number
*/
getClusterExpansionZoom(clusterId: number): Promise<number> {
Expand Down
2 changes: 1 addition & 1 deletion src/ui/camera.ts
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ export abstract class Camera extends Evented {
*
* @param bounds - Center these bounds in the viewport and use the highest
* zoom level up to and including `Map#getMaxZoom()` that fits them in the viewport.
* @param options- Options supports all properties from {@link AnimationOptions} and {@link CameraOptions} in addition to the fields below.
* @param options - Options supports all properties from {@link AnimationOptions} and {@link CameraOptions} in addition to the fields below.
* @param eventData - Additional properties to be added to event objects of events triggered by this method.
* @returns `this`
* @example
Expand Down
1 change: 0 additions & 1 deletion src/util/actor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export class Actor implements IActor {

/**
* @param target - The target
* @param parent - The parent
* @param mapId - A unique identifier for the Map instance using this Actor.
*/
constructor(target: ActorTarget, mapId?: string | number) {
Expand Down

0 comments on commit c6f3a11

Please sign in to comment.