UNPKG

ts-aspnetcore-apigateway-client

Version:

TypeScript Client for Api Gateway built using AspNetCore.ApiGateway package.

16 lines (15 loc) 314 B
export declare class JsonPatchOperation { op?: Operation; path?: string; from?: string; value?: any; } export declare enum Operation { Add = "Add", Remove = "Remove", Replace = "Replace", Move = "Move", Copy = "Copy", Test = "Test", Invalid = "Invalid" }