@idm-plugin/meteo2 0.9.5 → 0.9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +38 -38
- package/dist/index.umd.cjs +2 -2
- package/dist/openmeteo/src/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -33,6 +33,7 @@ export interface OMParams {
|
|
|
33
33
|
/**
|
|
34
34
|
* @see https://open-meteo.com/en/docs
|
|
35
35
|
* @see https://openmeteo.s3.amazonaws.com/index.html
|
|
36
|
+
* @see https://openmeteo.s3.amazonaws.com/index.html#data/
|
|
36
37
|
*/
|
|
37
38
|
export declare class MeteoHelper2 {
|
|
38
39
|
private readonly apikey;
|
|
@@ -136,6 +137,9 @@ export declare class MeteoHelper2 {
|
|
|
136
137
|
spotForecast(lat: number, lng: number, datetime: string | undefined, simplify?: boolean, withDaily?: boolean, withHourly?: boolean, options?: OMOptions): Promise<{
|
|
137
138
|
weather: any;
|
|
138
139
|
marine: any[];
|
|
140
|
+
wparams: OMParams;
|
|
141
|
+
mparams: OMParams;
|
|
142
|
+
datetime: string | undefined;
|
|
139
143
|
}>;
|
|
140
144
|
/**
|
|
141
145
|
* 历史再分析数据
|