Add missing properties to 'IDOMElementOptions' in 'famous'.

This commit is contained in:
Daniel Rosenwasser 2015-08-11 16:16:20 -07:00
parent c892b43ca4
commit b1d60d580d

6
famous/famous.d.ts vendored
View File

@ -125,7 +125,13 @@ declare module "famous/dom-renderables" {
}
export interface IDOMElementOptions {
tagName?: string;
classes?: string[];
attributes?: { [attributeName: string]: string };
properties?: { [attributeName: string]: string };
id?: string;
content?: string;
cutout?: boolean;
}
}