From 10085ccf413c4b959c7efd83f29f37ee1074a95c Mon Sep 17 00:00:00 2001 From: Julius Gruber Date: Mon, 3 Jun 2019 09:45:44 +0200 Subject: [PATCH] Added effect retrieveMethods$ --- src/config/auth-config.interfaces.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/config/auth-config.interfaces.ts diff --git a/src/config/auth-config.interfaces.ts b/src/config/auth-config.interfaces.ts new file mode 100644 index 0000000000..cc3d97c6b8 --- /dev/null +++ b/src/config/auth-config.interfaces.ts @@ -0,0 +1,10 @@ +import { Config } from './config.interface'; + +export interface AuthTarget { + host: string; + page: string; +} + +export interface AuthConfig extends Config { + target: AuthTarget; +}