UNPKG
core-cde
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
core-cde
/
dist
/
core-cde
/
events
/
src
/
INotifyPropertyChanged.d.ts
9 lines
(8 loc)
•
322 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
EventDispatcher
}
from
'./Event'
;
import
{
PropertyChangedArg
}
from
'./PropertyChangedArg'
;
/** * Интерфейс объекта, сообщающего об изменении свойств */
export
interface
INotifyPropertyChanged
{
onPropertyChanged
:
EventDispatcher
<
PropertyChangedArg
>; }