fix: eslint fixes stores rd.2

This commit is contained in:
Zack Spear
2023-07-21 11:44:34 -07:00
parent 2191cd8e9e
commit 1e0cb2ca68

View File

@@ -26,6 +26,15 @@ export type PurchaseAction = Purchase | Redeem | Upgrade;
export type ServerAction = AccountAction | AccountKeyAction | PurchaseAction;
export interface UserInfo {
'custom:ips_id'?: string;
email?: string;
email_verifed?: 'true' | 'false';
preferred_username?: string;
sub?: string;
username?: string;
}
export interface ServerData {
description?: string;
deviceCount?: number;
@@ -83,15 +92,6 @@ export type SendPayloads = ExternalActions[] | UpcActions[];
export type QueryPayloads = ExternalPayload | UpcPayload;
export interface UserInfo {
'custom:ips_id'?: string;
email?: string;
email_verifed?: 'true' | 'false';
preferred_username?: string;
sub?: string;
username?: string;
}
interface CallbackActionsStore {
redirectToCallbackType: (decryptedData: QueryPayloads) => void;
encryptionKey: string;