# wp-parsely/3.8.4/src/js/common.interface.ts

Parse.ly, version 3.8.4. 10 lines.

- Page: https://pluginprobe.com/plugins/wp-parsely/3.8.4/code/src/js/common.interface.ts
- Raw: https://pluginprobe.com/plugins/wp-parsely/3.8.4/raw/src/js/common.interface.ts
- Modified: 2023-02-27T12:36:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-parsely/3.8.4/code/src/js/common.interface.ts#L10-L20`.

```typescript
export interface ParselyAPIError {
	error: ParselyAPIErrorInfo | null;
}

export interface ParselyAPIErrorInfo {
	code: number;
	message: string;
	htmlMessage: string;
}

```
