This commit is contained in:
Manav Rathi 2024-05-26 16:06:29 +05:30
parent babe378301
commit 5bbe768acb
No known key found for this signature in database

View file

@ -1,6 +1,7 @@
import { TwoFactorType } from "@ente/accounts/constants/twofactor";
import type { DialogBoxAttributesV2 } from "@ente/shared/components/DialogBoxV2/types";
import { APPS } from "./constants";
import type { AppName } from "@/next/types/app";
export interface PageProps {
appContext: {
@ -10,5 +11,6 @@ export interface PageProps {
logout: () => void;
};
appName: APPS;
appName2?: AppName;
twoFactorType?: TwoFactorType;
}