mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-23 09:01:10 +08:00
7 lines
336 B
TypeScript
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;
|
|
} |