19 lines
387 B
TypeScript
19 lines
387 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
export type PackDescriptionPatch =
|
|
| {
|
|
op: PackDescriptionPatch.op;
|
|
value: string;
|
|
}
|
|
| {
|
|
op: PackDescriptionPatch.op;
|
|
};
|
|
export namespace PackDescriptionPatch {
|
|
export enum op {
|
|
SET = "set",
|
|
CLEAR = "clear",
|
|
}
|
|
}
|