seti-ramesesv1
Version:
Reusable components and context for Next.js apps
17 lines (16 loc) • 399 B
TypeScript
interface AttrProps {
component: string;
}
interface ParamsProps {
item: Record<string, any>;
prevPage: string;
}
interface OnlineTxnFormPage {
id: string;
attr: AttrProps;
params: ParamsProps;
target: string;
title: string;
}
declare const OnlineTxnFormPage: (props: Record<string, any>) => import("react/jsx-runtime").JSX.Element;
export default OnlineTxnFormPage;