docs(select): include popover for interface docs

This commit is contained in:
Brandy Carney
2017-10-13 13:19:12 -04:00
parent 17cdce101e
commit 213815cf4c
2 changed files with 6 additions and 3 deletions

View File

@ -22,6 +22,8 @@ export function isFunction(v: any): v is (Function) { return typeof v === 'funct
export function isStringOrNumber(v: any): v is (string | number) { return isString(v) || isNumber(v); }
export function isBlank(val: any): val is null { return val === undefined || val === null; }
/** @hidden */
export function isCheckedProperty(a: any, b: any): boolean {
if (a === undefined || a === null || a === '') {