From ebbfeb3b4d3aafa7dbfcab7067c5b874c27d2e84 Mon Sep 17 00:00:00 2001 From: Dominik Sigmund <dominik.sigmund@br.de> Date: Mon, 2 Mar 2020 18:10:35 +0100 Subject: [PATCH] Update index.d.ts --- index.d.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index a93aaca..ab0cfa3 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,4 +1,9 @@ declare module 'Log' { + export function info(message: string): string; + export function notice(message: string): string; + export function debug(message: string): string; + export function warning(message: string): string; + export function log(message: string): string; const noTypesYet: any; export default noTypesYet; -} \ No newline at end of file +} -- GitLab