UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

13 lines (12 loc) 378 B
import { CoreTypes } from '../../core-types'; import { Color } from '../../color'; export interface StrokeCSSValues { width: CoreTypes.LengthType; color: Color; } /** * Parse a string into StrokeCSSValues * https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-text-stroke * @param value */ export declare function parseCSSStroke(value: string): StrokeCSSValues;