Skip to content

Commit 0c8c5c1

Browse files
committed
minor edits in SDK
1 parent e266052 commit 0c8c5c1

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/sdk/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This module is the main entry point for the LiveCodes SDK.
55
* It provides the core `createPlayground` and `getPlaygroundUrl` functions.
66
*
7-
* @module
7+
* @module livecodes
88
*/
99

1010
/* eslint-disable no-redeclare */

src/sdk/jsr.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"$schema": "https://jsr.io/schema/config-file.v1.json",
23
"name": "@livecodes/sdk",
34
"description": "A Code Playground That Just Works!",
45
"version": "0.13.0",

src/sdk/models.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1628,15 +1628,15 @@ export interface Playground extends API {
16281628
export type languageSelector = `${Language}-selector`;
16291629

16301630
/**
1631-
* Tool names concatenated with commas, for use in `UrlQueryParams`.
1631+
* Tool names concatenated with commas, for use in {@link UrlQueryParams}.
16321632
*/
16331633
export type ToolNames =
16341634
| `${ToolName}`
16351635
| `${ToolName},${ToolName}`
16361636
| `${ToolName},${ToolName},${ToolName}`;
16371637

16381638
/**
1639-
* Tools status string combining tool names with their status for use in `UrlQueryParams`.
1639+
* Tools status string combining tool names with their status for use in {@link UrlQueryParams}.
16401640
*/
16411641
export type ToolsStatus = `${ToolNames}|${Config['tools']['status']}`;
16421642

0 commit comments

Comments
 (0)