From a82057d61bfe7ade89e41479301357cb5292a98b Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Thu, 27 Jun 2019 00:47:19 +0200 Subject: [PATCH] Added export on Pass declaration --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 689b46d..d4764ed 100644 --- a/index.d.ts +++ b/index.d.ts @@ -2,7 +2,7 @@ import { Stream } from "stream"; export function createPass(options: Schema.FactoryOptions): Promise; -declare class Pass { +export declare class Pass { constructor(options: Schema.PassInstance); public transitType: "PKTransitTypeAir" | "PKTransitTypeBoat" | "PKTransitTypeBus" | "PKTransitTypeGeneric" | "PKTransitTypeTrain";