mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 11:35:14 +00:00
Seperate authtypes to own file
This commit is contained in:
parent
240dd06c0f
commit
3ed6fd79ac
5
src/types/auth.types.ts
Normal file
5
src/types/auth.types.ts
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
export interface AuthPayload {
|
||||||
|
url: string;
|
||||||
|
username: string;
|
||||||
|
password: string;
|
||||||
|
}
|
|
@ -1 +1,3 @@
|
||||||
|
export * from './auth.types';
|
||||||
|
|
||||||
export * from './types';
|
export * from './types';
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
export interface AuthPayload {
|
|
||||||
url: string;
|
|
||||||
username: string;
|
|
||||||
password: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface BlacklistPayload {
|
export interface BlacklistPayload {
|
||||||
blacklist: Array<string>;
|
blacklist: Array<string>;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user