OwenKelvin/Angular-School-Management-System

View on GitHub
src/app/core/interfaces/oauth.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface OauthInterface {
    grant_type: string;
    client_id: string;
    client_secret: string;
    username: string;
    password: string;
    scope: string;
    remember_me: boolean;
}