added options to the location type

This commit is contained in:
cupcakearmy 2019-12-04 20:38:27 +01:00
parent d7cdeafe60
commit 45f7506478
1 changed files with 5 additions and 0 deletions

View File

@ -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 }