Interface TRPC

interface TRPC {
    env: string;
    namespace: string;
    sendOnly: boolean;
}

Properties

env: string

123 环境名,例如 formal、pre、test

export const option = {
trpc: {
env: 'formal'
}
}
namespace: string

环境类型,例如 Production、Development

export const option = {
trpc: {
namespace: 'Development'
}
}
sendOnly: boolean

trpc 只发不收选项

export const option = {
trpc: {
sendOnly: true
}
}