Added effect retrieveMethods$

This commit is contained in:
Julius Gruber
2019-06-03 09:45:44 +02:00
parent 6b25dcfa70
commit 10085ccf41

View File

@@ -0,0 +1,10 @@
import { Config } from './config.interface';
export interface AuthTarget {
host: string;
page: string;
}
export interface AuthConfig extends Config {
target: AuthTarget;
}