examples to new tsrpc-cli
This commit is contained in:
1
examples/first-api/frontend/src/shared
Symbolic link
1
examples/first-api/frontend/src/shared
Symbolic link
@@ -0,0 +1 @@
|
||||
../../backend/src/shared
|
@@ -1,8 +0,0 @@
|
||||
export interface ReqHello {
|
||||
name: string
|
||||
}
|
||||
|
||||
export interface ResHello {
|
||||
reply: string,
|
||||
time: Date
|
||||
}
|
@@ -1,57 +0,0 @@
|
||||
import { ServiceProto } from 'tsrpc-proto';
|
||||
import { ReqHello, ResHello } from './PtlHello';
|
||||
|
||||
export interface ServiceType {
|
||||
api: {
|
||||
"Hello": {
|
||||
req: ReqHello,
|
||||
res: ResHello
|
||||
}
|
||||
},
|
||||
msg: {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
export const serviceProto: ServiceProto<ServiceType> = {
|
||||
"services": [
|
||||
{
|
||||
"id": 0,
|
||||
"name": "Hello",
|
||||
"type": "api"
|
||||
}
|
||||
],
|
||||
"types": {
|
||||
"PtlHello/ReqHello": {
|
||||
"type": "Interface",
|
||||
"properties": [
|
||||
{
|
||||
"id": 0,
|
||||
"name": "name",
|
||||
"type": {
|
||||
"type": "String"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"PtlHello/ResHello": {
|
||||
"type": "Interface",
|
||||
"properties": [
|
||||
{
|
||||
"id": 0,
|
||||
"name": "reply",
|
||||
"type": {
|
||||
"type": "String"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 1,
|
||||
"name": "time",
|
||||
"type": {
|
||||
"type": "Date"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user