authelia/test/helpers/context/AutheliaServerInterface.ts

7 lines
130 B
TypeScript

interface AutheliaServerInterface {
start(): Promise<void>;
stop(): Promise<void>
}
export default AutheliaServerInterface;