UNPKG

230 BTypeScriptView Raw
1/**
2 * Generates a rounded rectanglar path
3 *
4 * @export
5 * @param x, y, w, h, r, tl, tr, bl, br
6 */
7export declare function roundedRect(x: number, y: number, w: number, h: number, r: number, [tl, tr, bl, br]: boolean[]): string;