Skip to content

Commit 24f25a6

Browse files
feat: describe Services
1 parent 0bd6c46 commit 24f25a6

File tree

3 files changed

+1201
-1
lines changed

3 files changed

+1201
-1
lines changed

describe.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { LNodeType, LNodeTypeDescription } from "./describe/LNodeType.js";
88
import { LN, LNDescription } from "./describe/LN.js";
99
import { LN0, LN0Description } from "./describe/LN0.js";
1010
import { Server, ServerDescription } from "./describe/Server.js";
11+
import { Services, ServicesDescription } from "./describe/Services.js";
1112

1213
export type Description =
1314
| PrivateDescription
@@ -19,7 +20,8 @@ export type Description =
1920
| LNDescription
2021
| LN0Description
2122
| LDeviceDescription
22-
| ServerDescription;
23+
| ServerDescription
24+
| ServicesDescription;
2325
const sclElementDescriptors: Partial<
2426
Record<string, (element: Element) => Description | undefined>
2527
> = {
@@ -33,6 +35,7 @@ const sclElementDescriptors: Partial<
3335
LN0,
3436
LDevice,
3537
Server,
38+
Services,
3639
};
3740

3841
export function describe(element: Element): Description | undefined {

0 commit comments

Comments
 (0)