8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
export interface HttpPatchConfig {
|
|
url?: string;
|
|
}
|
|
export declare const HttpPatchConfigSerializer: {
|
|
_fromJsonObject(object: any): HttpPatchConfig;
|
|
_toJsonObject(self: HttpPatchConfig): any;
|
|
};
|