nativescript-shadowed-label
Version:
A NativeScript Label that supports text shadow.
18 lines (14 loc) • 506 B
TypeScript
import { CssProperty, Style } from 'tns-core-modules/ui/core/properties';
import { ShadowedLabel as Common } from './shadowed-label.common';
import { Color } from 'tns-core-modules/color/color';
import { dip } from 'tns-core-modules/ui/core/view';
export declare class ShadowedLabel extends Common {
textShadow: any;
}
export declare const textShadowProperty: CssProperty<Style, TextShadow>;
export interface TextShadow {
offsetX: dip;
offsetY: dip;
blurRadius: dip;
color: Color;
}