We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc1d16b commit b3be0e7Copy full SHA for b3be0e7
1 file changed
src/core/baseProcessor.ts
@@ -133,12 +133,7 @@ abstract class BaseProcessor {
133
abstract extractTexts(filePathOrBuffer: ProcessorInput): Promise<string[]>;
134
135
// Load file into common tree structure
136
- abstract loadIntoTree(
137
- filePathOrBuffer: ProcessorInput,
138
- options?: {
139
- openZip?: (input: ProcessorInput) => Promise<{ zip: ZipAdapter }>;
140
- }
141
- ): Promise<AACTree>;
+ abstract loadIntoTree(filePathOrBuffer: ProcessorInput): Promise<AACTree>;
142
143
// Process texts (e.g., apply translations) and return new file/buffer
144
abstract processTexts(
0 commit comments