import { IJoinHub } from "./base-hub.js"; /** * Properties required to join a magic link hub * * @export * @interface IJoinMagicLinkHub * @extends {IJoinHub} */ export interface IJoinMagicLinkHub extends IJoinHub { } /** * Used to start listening to a magic link token for confirmation * * @export * @interface ISubscribeToMagicLink */ export interface ISubscribeToMagicLink { RequestToken: string; } //# sourceMappingURL=magic-link-hub.d.ts.map