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