Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

Commit df4c37f

Browse files
feat: extractors update
Signed-off-by: Adithya Krishna <[email protected]>
1 parent 3867dc7 commit df4c37f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/extractor.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { IExtractor, IExtractorSchema } from "./types";
22

33
class Extractor {
4-
public name: string;
5-
public input_mime_types: string[];
6-
public description: string;
7-
public input_params: Record<string, string | number>;
8-
public outputs: IExtractorSchema;
4+
public readonly name: string;
5+
public readonly input_mime_types: string[];
6+
public readonly description: string;
7+
public readonly input_params: Record<string, string | number>;
8+
public readonly outputs: IExtractorSchema;
99

1010
constructor(data: IExtractor) {
1111
this.name = data.name;

0 commit comments

Comments
 (0)