1
0
mirror of https://github.com/laurent22/joplin.git synced 2026-04-27 19:59:02 +02:00
Files
joplin/packages/lib/components/shared/SsoScreenShared.ts

8 lines
189 B
TypeScript

interface SsoScreenShared {
openLoginPage(): Promise<void>;
processLoginCode(code: string): Promise<boolean>;
isLoginCodeValid(code: string): boolean;
}
export default SsoScreenShared;