added options to the location type

This commit is contained in:
cupcakearmy 2019-12-04 20:38:27 +01:00
parent d7cdeafe60
commit 45f7506478

View File

@ -77,6 +77,11 @@ export type Location = {
from: string from: string
to: string | string[] to: string | string[]
keep?: ForgetPolicy keep?: ForgetPolicy
options?: {
[key: string]: {
[key: string]: string | string[]
}
}
} }
export type Locations = { [name: string]: Location } export type Locations = { [name: string]: Location }