From 802e23a51d63e8fea97f728989c176c06ddbf964 Mon Sep 17 00:00:00 2001 From: Joeri Deplus <1800310+miniplus@users.noreply.github.com> Date: Fri, 25 Nov 2022 20:39:29 +0100 Subject: [PATCH] Add static type prop (#33) --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index bb034d0..bcce4ba 100644 --- a/index.d.ts +++ b/index.d.ts @@ -33,6 +33,7 @@ interface BackendOptions { export default class I18NexFsBackend implements BackendModule { + static type: "backend"; constructor(services?: any, options?: BackendOptions); init(services?: any, options?: BackendOptions): void; read(language: string, namespace: string, callback: ReadCallback): void;