From 45f750647815aabb6a7f9fcdaf4bd1a5d69350ed Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Wed, 4 Dec 2019 20:38:27 +0100 Subject: [PATCH] added options to the location type --- src/types.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/types.ts b/src/types.ts index 9b95928..0c0fb02 100644 --- a/src/types.ts +++ b/src/types.ts @@ -77,6 +77,11 @@ export type Location = { from: string to: string | string[] keep?: ForgetPolicy + options?: { + [key: string]: { + [key: string]: string | string[] + } + } } export type Locations = { [name: string]: Location }