Skip to content

Commit

Permalink
Fixed Network hierarchy
Browse files Browse the repository at this point in the history
  • Loading branch information
AtibQur committed Jan 30, 2025
1 parent d70decd commit da77b6c
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ interface NetworkInterface {

The following sections provide details on each available option within `NetworkInterface`, along with example usages.

### `authKey`
#### `authKey`

```ts
authKey?: string;
Expand All @@ -107,7 +107,7 @@ const cx = await CheerpX.Linux.create({
});
```

### `controlUrl`
#### `controlUrl`

```ts
controlUrl?: string;
Expand All @@ -124,7 +124,7 @@ const cx = await CheerpX.Linux.create({
});
```

### `loginUrlCb`
#### `loginUrlCb`

```ts
loginUrlCb?: (url: string) => void;
Expand All @@ -147,7 +147,7 @@ function loginUrlCb(url) {
}
```

### `stateUpdateCb`
#### `stateUpdateCb`

```ts
stateUpdateCb?: (state: number) => void;
Expand All @@ -170,7 +170,7 @@ function stateUpdateCb(state) {
}
```

### `netmapUpdateCb`
#### `netmapUpdateCb`

```ts
netmapUpdateCb?: (map: any) => void;
Expand Down

0 comments on commit da77b6c

Please sign in to comment.