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 };