NP
Size: a a a
NP
NP
import { Application } from '@foxtrot/core'
class Foo {
...
public bar() {
return new Promise((resolve) => resolve(Application.callSomething());
}
...
}NP
TypeError: Can not call 'callSomething' of undefined
MR
NP
MR
MR
NP
(resolve) => {
import('@foxtrot/core').then({ Application }) => {
resolve(Application.callSomething());
});
}NP
J
MR
꧁岡
(resolve) => {
import('@foxtrot/core').then({ Application }) => {
resolve(Application.callSomething());
});
}NP
MR
(resolve) => {
import('@foxtrot/core').then({ Application }) => {
resolve(Application.callSomething());
});
}NP
꧁岡

NP
MR