mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
8 lines
344 B
TypeScript
8 lines
344 B
TypeScript
declare module "ui/builder/special-properties" {
|
|
import view = require("ui/core/view");
|
|
|
|
export type PropertySetter = (instance: view.View, propertyValue: any) => void;
|
|
export function registerSpecialProperty(name: string, setter: PropertySetter): void;
|
|
export function getSpecialPropertySetter(name: string): PropertySetter;
|
|
}
|