@lomray/microservice-users
Version:
Users microservice based on NodeJS & inverted json.
15 lines (14 loc) • 456 B
TypeScript
declare class SignOutInput {
userId: string;
}
declare class SignOutOutput {
loggedOut: boolean;
}
/**
* Sign out user
* This method only for add remote middlewares (e.g.: remove auth tokens from authentication microservice)
*/
declare const signOut: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, SignOutInput, Record<string, any>, {
loggedOut: boolean;
}>;
export { SignOutInput, SignOutOutput, signOut };