diff --git a/packages/global/common/system/types/index.d.ts b/packages/global/common/system/types/index.d.ts index eb989da5d..6349226ea 100644 --- a/packages/global/common/system/types/index.d.ts +++ b/packages/global/common/system/types/index.d.ts @@ -118,11 +118,12 @@ export type SystemEnvType = { oneapiUrl?: string; chatApiKey?: string; - customPdfParse?: { - url?: string; - key?: string; - - doc2xKey?: string; - price?: number; // n points/1 page - }; + customPdfParse?: customPdfParseType; +}; + +export type customPdfParseType = { + url?: string; + key?: string; + doc2xKey?: string; + price?: number; };