From 61363b872b1c178b61c5c9dca8f016fc29d50d00 Mon Sep 17 00:00:00 2001 From: Iddan Aaronsohn <91368697+iddan-flycode@users.noreply.github.com> Date: Wed, 19 Jan 2022 16:14:10 +0200 Subject: [PATCH] Make obsolete public Currently, it is impossible in TypeScript to tell if an item is obsolete or not. --- pofile.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pofile.d.ts b/pofile.d.ts index dd61731..56702c1 100644 --- a/pofile.d.ts +++ b/pofile.d.ts @@ -21,8 +21,8 @@ declare class Item { public comments: string[]; public extractedComments: string[]; public flags: Record; + public obsolete: boolean; private nplurals: number; - private obsolete: boolean; public toString(): string; }