Fix: setting text in Span to number/null/undefined

This commit is contained in:
vakrilov
2016-04-18 18:32:55 +03:00
parent d7352b7eea
commit fddaf251f7
8 changed files with 88 additions and 8 deletions

6
utils/types.d.ts vendored
View File

@ -83,4 +83,10 @@
*/
baseClassInfo: ClassInfo;
}
/**
* Returns a string representation of a string to be shown in UI.
* @param object The object which class hierarchy will be get.
*/
export function toUIString(object): string;
}