UNPKG
@solidgrounds/core
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Dependency injection container
github.com/solidgrounds
solidgrounds/solidgrounds
@solidgrounds/core
/
src
/
Value
/
CompilerPass.d.ts
3 lines
(2 loc)
•
202 B
TypeScript
View Raw
1
2
3
import
{
CompileContext
,
FeatureFactoryContext
}
from
'../Context'
;
export
declare
type
CompilerPass
= <S>
(
context
:
CompileContext
<S>,
featureContext
:
FeatureFactoryContext
<S>
) =>
Promise
<
void
> |
void
;