fix types
This commit is contained in:
parent
dd980aab3b
commit
5507daee73
1 changed files with 4 additions and 1 deletions
|
|
@ -13,13 +13,16 @@ export type extend = {
|
||||||
Update: (self:extend)->();
|
Update: (self:extend)->();
|
||||||
Destroy: (self:extend)->();
|
Destroy: (self:extend)->();
|
||||||
UpdateTriggers: {[string]:boolean?};
|
UpdateTriggers: {[string]:boolean?};
|
||||||
|
Unload: (self:extend,object:DOM|any)->();
|
||||||
|
GetChildren: (self:extend)->({DOM|any});
|
||||||
|
ChildAdded: signal;
|
||||||
}
|
}
|
||||||
export type DOM = {
|
export type DOM = {
|
||||||
[string]: any;
|
[string]: any;
|
||||||
Destroy: (self:DOM)->();
|
Destroy: (self:DOM)->();
|
||||||
GetPropertyChangedSignal: (self:DOM,propertyName:string)->(RBXScriptSignal|signal);
|
GetPropertyChangedSignal: (self:DOM,propertyName:string)->(RBXScriptSignal|signal);
|
||||||
Update: (self:DOM)->();
|
Update: (self:DOM)->();
|
||||||
}
|
}|extend;
|
||||||
export type DOM_constructor = {
|
export type DOM_constructor = {
|
||||||
[event]:
|
[event]:
|
||||||
(DOM,...any)->()
|
(DOM,...any)->()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue