UNPKG
@mas-soft/mas-core-server
Version:
latest (5.1.1)
5.1.1
5.1.0
5.0.11
5.0.10
5.0.9
5.0.8
5.0.7
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
4.5.3
4.5.2
4.5.1
4.5.0
4.4.8
4.4.6
4.4.5
4.4.4
4.4.3
4.4.2
4.4.1
4.4.0
4.3.9
4.3.8
4.3.7
4.3.6
4.3.5
4.3.4
4.3.3
4.3.1
4.3.0
4.2.2
4.2.1
4.2.0
4.1.1
4.1.0
4.0.13
4.0.12
4.0.11
4.0.10
4.0.9
4.0.8
4.0.7
4.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
main application
@mas-soft/mas-core-server
/
dist
/
src
/
core-module
/
interfaces
/
entity-microservice.d.ts
9 lines
(8 loc)
•
220 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
ServiceSchema
}
from
"moleculer"
;
export
interface
EntityMicroService
extends
ServiceSchema
{
actions
?: {
add
?: {} |
Function
;
get
?: {} |
Function
; [
p
:
string
]:
any
; }; }