diff --git a/src/types/auth.types.ts b/src/types/auth.types.ts new file mode 100644 index 00000000..36c0a58b --- /dev/null +++ b/src/types/auth.types.ts @@ -0,0 +1,5 @@ +export interface AuthPayload { + url: string; + username: string; + password: string; +} diff --git a/src/types/index.ts b/src/types/index.ts index fcb073fe..a49f36ea 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -1 +1,3 @@ +export * from './auth.types'; + export * from './types'; diff --git a/src/types/types.ts b/src/types/types.ts index d10c5a75..d302fc86 100644 --- a/src/types/types.ts +++ b/src/types/types.ts @@ -1,9 +1,3 @@ -export interface AuthPayload { - url: string; - username: string; - password: string; -} - export interface BlacklistPayload { blacklist: Array; }