electron-oauth-helper
Version:
Easy to use helper library for OAuth1 and OAuth2.
10 lines • 346 B
TypeScript
import { OAuth1Config, OAuth1URLs } from "./helper";
import { BrowserWindow } from "electron";
export default class OAuth1Provider {
config: OAuth1Config;
urls: OAuth1URLs;
private finished;
constructor(config: OAuth1Config & OAuth1URLs);
perform(window: BrowserWindow): Promise<unknown>;
}
//# sourceMappingURL=index.d.ts.map