UNPKG

329 BTypeScriptView Raw
1import type { PathArray } from '../types';
2/**
3 * Iterates an array to check if it's a `PathArray`
4 * with all C (cubic bezier) segments.
5 *
6 * @param {string | PathArray} path the `Array` to be checked
7 * @returns {boolean} iteration result
8 */
9export declare function isCurveArray(path: string | PathArray): path is PathArray;