UNPKG

482 BTypeScriptView Raw
1import { IGuidColorItem, IRGBColorItem } from "./interfaces";
2import { ApiExecutionResponseError } from "./execution/execute-afm";
3export declare const isGuidColorItem: (color: IGuidColorItem | IRGBColorItem | null | undefined) => color is IGuidColorItem;
4export declare const isRgbColorItem: (color: IGuidColorItem | IRGBColorItem | null | undefined) => color is IRGBColorItem;
5export declare function isApiExecutionResponseError(error: Error): error is ApiExecutionResponseError;