mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* added rollup-plugin-peer-deps-external * fixed error * added oauth2-implicit * corrected formatting * removed unused files * corrected version
7 lines
236 B
TypeScript
7 lines
236 B
TypeScript
import { finish, parseCredentials, start, AuthState } from 'oauth2-implicit';
|
|
|
|
parseCredentials('hello');
|
|
finish();
|
|
const params: AuthState = { originalUrl: '' };
|
|
start({ auth_uri: '', client_id: '', state: params, redirect_uri: '' });
|