(thing: any)
| 713 | } |
| 714 | |
| 715 | export function isObservableObject(thing: any): boolean { |
| 716 | if (isObject(thing)) { |
| 717 | return isObservableObjectAdministration((thing as any)[$mobx]) |
| 718 | } |
| 719 | return false |
| 720 | } |
| 721 | |
| 722 | export function recordAnnotationApplied( |
| 723 | adm: ObservableObjectAdministration, |
no test coverage detected
searching dependent graphs…