Files
NativeScript/tns-core-modules/ui/builder/special-properties.d.ts
Hristo Hristov bb2c7aa60a partial state
2016-12-13 15:51:18 +02:00

7 lines
336 B
TypeScript

declare module "ui/builder/special-properties" {
import { View } from "ui/core/view";
export type PropertySetter = (instance: View, propertyValue: any) => void;
export function registerSpecialProperty(name: string, setter: PropertySetter): void;
export function getSpecialPropertySetter(name: string): PropertySetter;
}