UNPKG

@sitecore/sc-contenthub-webclient-sdk

Version:

Sitecore Content Hub WebClient SDK.

10 lines (9 loc) 367 B
import { OAuthGrantBase } from "./oauth-grant-base"; import { OAuthGrantType } from "./oauth-grant-type"; export default class OAuthPasswordGrant extends OAuthGrantBase { type: OAuthGrantType; username: string; password: string; constructor(clientId: string, clientSecret: string, username: string, password: string); } export { OAuthPasswordGrant };