/**
 *
 * An interface representing SigninStateVerificationQuery.
 * Signin state (part of signin action auth flow) verification invoke query
 *
 */
type SigninStateVerifyQuery = {
    /**
     * @member {string} [state] The state string originally received when the
     * signin web flow is finished with a state posted back to client via tab SDK
     * microsoftTeams.authentication.notifySuccess(state)
     */
    state?: string;
};

export type { SigninStateVerifyQuery };
