Type alias RunViewsWithCacheCheckResponse<T>

RunViewsWithCacheCheckResponse<T>: {
    errorMessage?: string;
    results: RunViewWithCacheCheckResult<T>[];
    success: boolean;
}

Response from RunViewsWithCacheCheck - contains results for each view in the batch

Type Parameters

  • T = unknown

Type declaration

  • Optional errorMessage?: string

    Overall error message if success is false

  • results: RunViewWithCacheCheckResult<T>[]

    Results for each view in the batch, in the same order as the input

  • success: boolean

    Whether the overall operation succeeded