17 lines
313 B
TypeScript
17 lines
313 B
TypeScript
export type LoginState = {
|
|
sessionToken?: string;
|
|
gToken?: string;
|
|
bulletToken?: string;
|
|
};
|
|
export type State = {
|
|
loginState?: LoginState;
|
|
fGen: string;
|
|
appUserAgent?: string;
|
|
userLang?: string;
|
|
userCountry?: string;
|
|
};
|
|
|
|
export const DEFAULT_STATE: State = {
|
|
fGen: "https://api.imink.app/f",
|
|
};
|