<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [recogn-parse](./recogn-parse.md) &gt; [Parser](./recogn-parse.parser.md)

## Parser type

解析器

**Signature:**

```typescript
export type Parser<Options = any> = SerialParser<Options> | Parse<Options>;
```
**References:** [SerialParser](./recogn-parse.serialparser.md)<!-- -->, [Parse](./recogn-parse.parse.md)

## Remarks

解析器可以是一个解析函数，也可以是一组解析函数。 当是一组解析函数时，所有的解析函数都会依次执行。并会以最后一个解析函数返回的结果为最终的解析结果。

