s3si.ts/state.ts

17 lines
313 B
TypeScript
Raw Normal View History

2022-10-18 08:08:26 -04:00
export type LoginState = {
2022-10-18 20:36:58 -04:00
sessionToken?: string;
gToken?: string;
bulletToken?: string;
2022-10-18 08:08:26 -04:00
};
2022-10-18 09:16:51 -04:00
export type State = {
loginState?: LoginState;
2022-10-18 20:36:58 -04:00
fGen: string;
appUserAgent?: string;
2022-10-19 04:56:18 -04:00
userLang?: string;
userCountry?: string;
2022-10-18 09:16:51 -04:00
};
2022-10-18 20:36:58 -04:00
export const DEFAULT_STATE: State = {
fGen: "https://api.imink.app/f",
};