<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [recogn-parse](./recogn-parse.md) &gt; [SerialParser](./recogn-parse.serialparser.md)

## SerialParser type

串行解析器

**Signature:**

```typescript
export type SerialParser<Options = any> = Parse<Options>[];
```
**References:** [Parse](./recogn-parse.parse.md)

## Remarks

串行解析器就是一组解析函数，这些解析函数会依次执行，并会以最后一个解析函数返回的结果为最终的解析结果。这组解析函数中如果有解析函数抛出错误，则会终止解决流程。

