##// END OF EJS Templates
corrected i18n, css modules to support requirejs optimizer...
corrected i18n, css modules to support requirejs optimizer i18n bundles now conforms js modules with default exports (breaking change!)

File last commit:

r2:8ec37bf1b4d1 default
r53:deb0ed6fb680 v1.0.7 default
Show More
Stateful.d.ts
50 lines | 1.3 KiB | video/mp2t | TypeScriptLexer
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;