UNPKG

cwmsjs

Version:

CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps

44 lines (43 loc) 987 B
/** * CWMS Data API * CWMS REST API for Data Retrieval * * The version of the OpenAPI document: 2.3.2-2025.03.19 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface Offset */ export interface Offset { /** * * @type {boolean} * @memberof Offset */ estimate?: boolean; /** * * @type {string} * @memberof Offset */ toDatum?: string; /** * * @type {number} * @memberof Offset */ value?: number; } /** * Check if a given object implements the Offset interface. */ export declare function instanceOfOffset(value: object): boolean; export declare function OffsetFromJSON(json: any): Offset; export declare function OffsetFromJSONTyped(json: any, ignoreDiscriminator: boolean): Offset; export declare function OffsetToJSON(value?: Offset | null): any;