48 lines
737 B
Markdown
48 lines
737 B
Markdown
[@redeye/parser-core](../index.md) / ParserLink
|
|
|
|
# Interface: ParserLink
|
|
|
|
## Table of contents
|
|
|
|
### Properties
|
|
|
|
- [from](ParserLink.md#from)
|
|
- [to](ParserLink.md#to)
|
|
|
|
## Properties
|
|
|
|
### from
|
|
|
|
• **from**: `string`
|
|
|
|
The origin of the link, can be a beacon or server
|
|
|
|
**`Example`**
|
|
|
|
```ts
|
|
from = 'beacon1';
|
|
from = 'server1';
|
|
```
|
|
|
|
#### Defined in
|
|
|
|
[parser-link.ts:8](https://github.com/cisagov/RedEye/blob/bd5dfc45/parsers/parser-core/src/parser-output/parser-link.ts#L8)
|
|
|
|
---
|
|
|
|
### to
|
|
|
|
• **to**: `string`
|
|
|
|
The destination of the link, can be a beacon
|
|
|
|
**`Example`**
|
|
|
|
```ts
|
|
to = 'beacon2';
|
|
```
|
|
|
|
#### Defined in
|
|
|
|
[parser-link.ts:14](https://github.com/cisagov/RedEye/blob/bd5dfc45/parsers/parser-core/src/parser-output/parser-link.ts#L14)
|