You've already forked npm-core-sdk
36 lines
966 B
TypeScript
36 lines
966 B
TypeScript
// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
|
|
// @generated from file notification.proto (package api, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import { ListNotificationRequest, ListNotificationResult, PublishToUserRequest, PublishToUserResult } from "./notification_pb.js";
|
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
|
|
/**
|
|
* @generated from service api.NotificationService
|
|
*/
|
|
export const NotificationService = {
|
|
typeName: "api.NotificationService",
|
|
methods: {
|
|
/**
|
|
* @generated from rpc api.NotificationService.PublishToUser
|
|
*/
|
|
publishToUser: {
|
|
name: "PublishToUser",
|
|
I: PublishToUserRequest,
|
|
O: PublishToUserResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.NotificationService.List
|
|
*/
|
|
list: {
|
|
name: "List",
|
|
I: ListNotificationRequest,
|
|
O: ListNotificationResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
}
|
|
} as const;
|
|
|