obsidian-typings 4.55.0 → 4.56.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1934,7 +1934,12 @@ export interface BasesLinkConstructor extends ConstructorBase<[
1934
1934
  displayText: string
1935
1935
  ], BasesLink> {
1936
1936
  /**
1937
- * @todo Documentation incomplete.
1937
+ * Parse {@link BasesLink} from string.
1938
+ *
1939
+ * @param app - The Obsidian application instance.
1940
+ * @param str - The string to parse.
1941
+ * @param sourcePath - The source path.
1942
+ * @returns The parsed {@link BasesLink}.
1938
1943
  */
1939
1944
  parseFromString(app: App, str: string, sourcePath: string): BasesLink;
1940
1945
  }
@@ -4285,14 +4290,24 @@ export interface Coords {
4285
4290
  top: number;
4286
4291
  }
4287
4292
  /**
4288
- * @todo Documentation incomplete.
4293
+ * Left and top coordinates.
4294
+ *
4289
4295
  * @public
4290
4296
  * @unofficial
4297
+ * @since 0.11.11
4291
4298
  */
4292
4299
  export interface CoordsLeftTop {
4293
- /** @todo Documentation incomplete. */
4300
+ /**
4301
+ * Left coordinate
4302
+ *
4303
+ * @since 0.11.11
4304
+ */
4294
4305
  left: number;
4295
- /** @todo Documentation incomplete. */
4306
+ /**
4307
+ * Top coordinate
4308
+ *
4309
+ * @since 0.11.11
4310
+ */
4296
4311
  top: number;
4297
4312
  }
4298
4313
  /**