mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2025-01-23 22:18:59 +01:00
6 lines
165 B
TypeScript
6 lines
165 B
TypeScript
import TransformContext from 'src/transformer/TransformContext';
|
|
|
|
export function emptyContext(): TransformContext {
|
|
return new TransformContext(new Map(), []);
|
|
}
|