UNPKG
@billy-briggs-dev/sonar
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
Created by Billy Briggs
billy-briggs-dev/repo
@billy-briggs-dev/sonar
/
src
/
executors
/
sonar
/
executor.d.ts
6 lines
(5 loc)
•
235 B
TypeScript
View Raw
1
2
3
4
5
6
import
type
{
ExecutorContext
}
from
'@nrwl/devkit'
;
import
{
SonarExecutorOptions
}
from
'./schema'
;
export
default
function
sonarExecutor
(
options
:
SonarExecutorOptions
,
_context
:
ExecutorContext
):
Promise
<{
success
:
boolean
; }>;