UNPKG

mongodb-stitch

Version:

[![Join the chat at https://gitter.im/mongodb/stitch](https://badges.gitter.im/mongodb/stitch.svg)](https://gitter.im/mongodb/stitch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

15 lines (14 loc) 590 B
import AuthInfo from "../../internal/AuthInfo"; import ProviderCapabilities from "../../ProviderCapabilities"; import StitchCredential from "../../StitchCredential"; export default class StitchAuthResponseCredential implements StitchCredential { readonly authInfo: AuthInfo; readonly providerType: string; readonly providerName: string; readonly asLink: boolean; providerCapabilities: ProviderCapabilities; readonly material: { [key: string]: string; }; constructor(authInfo: AuthInfo, providerType: string, providerName: string, asLink: boolean); }