MCPcopy Create free account
hub / github.com/Tatamo/atcoder-cli / SessionResponseInterface

Interface SessionResponseInterface

src/session.ts:31–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31export interface SessionResponseInterface {
32 /**
33 * レスポンスのHTTPステータスコード。
34 */
35 status: number;
36 /**
37 * レスポンス本文。
38 */
39 data: string;
40 /**
41 * HTTPヘッダー
42 */
43 headers: {
44 location?: string
45 }
46 /**
47 * このレスポンスの情報を用いてセッションを保存
48 */
49 saveSession(): Promise<void>
50}
51
52interface Transaction {
53 cookies: CookieInterface;

Callers 3

loginMethod · 0.65
getCSRFTokenMethod · 0.65
session.tsFile · 0.65

Implementers 1

Sessionsrc/session.ts

Calls

no outgoing calls

Tested by

no test coverage detected