interface ArtusXGrpcConfig {
    client?: {
        addr: string;
    };
    dynamic: {
        proto: string[];
    };
    server?: {
        addr: string;
    };
    static: {
        codegen: string | {
            grpc?: string;
            js: string;
            ts?: string;
        };
        proto: string;
    };
}

Properties

client?: {
    addr: string;
}

Type declaration

  • addr: string
dynamic: {
    proto: string[];
}

Type declaration

  • proto: string[]
server?: {
    addr: string;
}

Type declaration

  • addr: string
static: {
    codegen: string | {
        grpc?: string;
        js: string;
        ts?: string;
    };
    proto: string;
}

Type declaration

  • codegen: string | {
        grpc?: string;
        js: string;
        ts?: string;
    }
  • proto: string