mirror of
https://github.com/whyour/qinglong.git
synced 2026-09-20 16:07:11 +08:00
9 lines
241 B
TypeScript
9 lines
241 B
TypeScript
import type { PolicySubject } from '../domain/projectPolicy';
|
|
|
|
export interface IdentityDirectoryRepository {
|
|
resolveAuthenticationSubject(
|
|
provider: string,
|
|
providerSubject: string,
|
|
): Promise<Readonly<PolicySubject> | null>;
|
|
}
|