UNPKG
generator-zionapps
Version:
latest (0.29.0)
0.29.0
0.28.2
0.28.1
0.21.4
0.21.3
0.21.2
0.21.1
0.21.0
0.19.8
0.19.7
0.19.6
0.19.5
0.19.4
0.19.3
0.19.2
0.19.0
0.9.19
0.9.18
0.8.5
0.8.2
0.8.1
0.8.0
Angular 9 Code Generator
generator-zionapps
/
generators
/
app
/
ngrx
/
store
/
templates
/
app-store.domain.ts
16 lines
(13 loc)
•
269 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{
Action
}
from
'@ngrx/store'
;
export
interface
CoreAction
extends
Action
{
key
?:
string
;
keys
?:
string
[];
payload
?:
any
;
token
?:
string
; }
export
interface
LastResult
{
data
?:
any
;
error
?:
any
;
success
:
boolean
;
token
?:
string
; }