Result from a loader or action called via dataStrategy

interface DataStrategyResult {
    result: unknown;
    type: "data" | "error";
}

Properties

Properties

result: unknown
type: "data" | "error"