UNPKG

@gooddata/gooddata-js

Version:
6 lines (5 loc) 482 B
import { IGuidColorItem, IRGBColorItem } from "./interfaces"; import { ApiExecutionResponseError } from "./execution/execute-afm"; export declare const isGuidColorItem: (color: IGuidColorItem | IRGBColorItem | null | undefined) => color is IGuidColorItem; export declare const isRgbColorItem: (color: IGuidColorItem | IRGBColorItem | null | undefined) => color is IRGBColorItem; export declare function isApiExecutionResponseError(error: Error): error is ApiExecutionResponseError;