mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-06 14:48:02 -05:00
updated openapi generator
This commit is contained in:
@@ -71,7 +71,7 @@ export interface PatchedProperty {
|
||||
* @type {number}
|
||||
* @memberof PatchedProperty
|
||||
*/
|
||||
propertyAmount?: number;
|
||||
propertyAmount?: number | null;
|
||||
/**
|
||||
*
|
||||
* @type {PropertyType}
|
||||
@@ -83,7 +83,7 @@ export interface PatchedProperty {
|
||||
/**
|
||||
* Check if a given object implements the PatchedProperty interface.
|
||||
*/
|
||||
export function instanceOfPatchedProperty(value: object): boolean {
|
||||
export function instanceOfPatchedProperty(value: object): value is PatchedProperty {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user