##// END OF EJS Templates
created typings for basic part of dojo and dijit further work is required to...
created typings for basic part of dojo and dijit further work is required to complete typings and separate them from this project dojo-typings replaced with @type/dojo, @type/dijit.

File last commit:

r2:8ec37bf1b4d1 default
r2:8ec37bf1b4d1 default
Show More
Stateful.d.ts
50 lines | 1.3 KiB | video/mp2t | TypeScriptLexer
cin
created typings for basic part of dojo and dijit further work is required to...
r2 import { DeclareConstructor } from "./_base/declare";
import { Handle, WatchHandle } from "./interfaces";
interface Stateful {
/**
* Used across all instances a hash to cache attribute names and their getter
* and setter names.
*/
_attrPairNames: { [attr: string]: string };
/**
* Helper function for get() and set().
* Caches attribute name values so we don't do the string ops every time.
*/
_getAttrNames(name: string): string;
/**
* Automatic setting of params during construction
*/
postscript(params?: Object): void;
/**
* Get a property on a Stateful instance.
*/
get(name: string): any;
/**
* Set a property on a Stateful instance
*/
set(name: string, value: any): this;
set(name: Object): this;
/**
* Internal helper for directly changing an attribute value.
*/
_changeAttrValue(name: string, value: any): this;
/**
* Watches a property for changes
*/
watch(callback: (prop: string, oldValue: any, newValue: any) => void): WatchHandle;
watch(name: string, callback: (prop: string, oldValue: any, newValue: any) => void): WatchHandle;
}
interface StatefulConstructor extends DeclareConstructor<Stateful> {
new (params?: Object): Stateful;
}
declare const Stateful: StatefulConstructor;
export = Stateful;