nativescript-shadowed-label
Version:
A NativeScript Label that supports text shadow.
13 lines (12 loc) • 526 B
TypeScript
import { ShadowedLabel as ShadowedLabelDefinition, TextShadow } from './index';
import { Label } from 'tns-core-modules/ui/label/label';
import { CssProperty, Style } from 'tns-core-modules/ui/core/properties';
export declare class ShadowedLabel extends Label implements ShadowedLabelDefinition {
textShadow: any;
}
export declare const textShadowProperty: CssProperty<Style, string | TextShadow>;
declare module 'tns-core-modules/ui/styling/style' {
interface Style {
textShadow: string | TextShadow;
}
}