From 2f98f8e1abc115845ff0b08ae86d2235b4c656a4 Mon Sep 17 00:00:00 2001 From: Alex Caza Date: Fri, 26 Jul 2024 14:57:57 -0400 Subject: [PATCH] Add @deprecated to useTextFile option --- lib/types.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/types.ts b/lib/types.ts index 0cd66d8..750f1c4 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -22,6 +22,13 @@ export type ConfigOptions = { showColumnHeaders?: boolean; showTitle?: boolean; title?: string; + /** + * Use `fileExtension` instead. + * + * Will be removed in the next major version (`2.x.x`) + * + * @deprecated + */ useTextFile?: boolean; fileExtension?: string; mediaType?: MediaType;