Files
openpanel/packages/core/src/interfaces/resourceErrorRouterParams.ts
Stefan Pejcic 8496a83edb fork refine
2024-02-05 10:23:04 +01:00

7 lines
152 B
TypeScript

import { ActionWithPage } from "./actions";
export type ResourceErrorRouterParams = {
resource: string;
action: ActionWithPage | undefined;
};