| 82 | const mobxPatchedDefinition = Symbol("patchedDefinition") |
| 83 | |
| 84 | export interface Mixins extends Record<string, any> { |
| 85 | locks: number |
| 86 | methods: Array<Function> |
| 87 | } |
| 88 | |
| 89 | function getMixins(target: object, methodName: string): Mixins { |
| 90 | const mixins = (target[mobxMixins] = target[mobxMixins] || {}) |
nothing calls this directly
no outgoing calls
no test coverage detected