mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2024-12-12 17:40:58 +01:00
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
|
import type TransformContext from "src/transformer/TransformContext";
|
||
|
|
||
|
export function emptyContext():TransformContext{
|
||
|
return {
|
||
|
fontMap:new Map(),
|
||
|
pageViewports:[]
|
||
|
};
|
||
|
}
|