5 lines
150 B
TypeScript
5 lines
150 B
TypeScript
import type { Result } from '../../../shared/result/Result';
|
|
|
|
export interface SessionValidatorPort {
|
|
validateSession(): Promise<Result<boolean>>;
|
|
} |