@palmgrove/nefdb 1.0.0
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/CHANGELOG.md +25 -0
- package/LICENSE +412 -0
- package/METHODOLOGY.md +1559 -0
- package/README.md +137 -0
- package/data/nefdb_v1.csv +46 -0
- package/data/nefdb_v1.json +1766 -0
- package/dist/api/aviation.d.ts +5 -0
- package/dist/api/fuel.d.ts +13 -0
- package/dist/api/grid.d.ts +6 -0
- package/dist/api/transport.d.ts +2 -0
- package/dist/api/waste.d.ts +4 -0
- package/dist/api/water.d.ts +3 -0
- package/dist/factors/aviation.d.ts +2 -0
- package/dist/factors/fuel_combustion.d.ts +2 -0
- package/dist/factors/grid_electricity.d.ts +2 -0
- package/dist/factors/index.d.ts +2 -0
- package/dist/factors/transport.d.ts +2 -0
- package/dist/factors/waste.d.ts +2 -0
- package/dist/factors/water.d.ts +2 -0
- package/dist/index.cjs +2098 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +2071 -0
- package/dist/query.d.ts +8 -0
- package/dist/sources/index.d.ts +5 -0
- package/dist/types.d.ts +50 -0
- package/package.json +56 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as aviation from "./api/aviation.js";
|
|
2
|
+
import * as fuel from "./api/fuel.js";
|
|
3
|
+
import * as grid from "./api/grid.js";
|
|
4
|
+
import * as transport from "./api/transport.js";
|
|
5
|
+
import * as waste from "./api/waste.js";
|
|
6
|
+
import * as water from "./api/water.js";
|
|
7
|
+
import type { SourceReference } from "./types.js";
|
|
8
|
+
import { get, list, query } from "./query.js";
|
|
9
|
+
export { get, list, query };
|
|
10
|
+
export type * from "./types.js";
|
|
11
|
+
export { aviation, fuel, grid, transport, waste, water };
|
|
12
|
+
declare function usedSources(): SourceReference[];
|
|
13
|
+
export declare const nefdb: {
|
|
14
|
+
list: typeof list;
|
|
15
|
+
get: typeof get;
|
|
16
|
+
query: typeof query;
|
|
17
|
+
aviation: typeof aviation;
|
|
18
|
+
fuel: typeof fuel;
|
|
19
|
+
grid: typeof grid;
|
|
20
|
+
transport: typeof transport;
|
|
21
|
+
waste: typeof waste;
|
|
22
|
+
water: typeof water;
|
|
23
|
+
version: () => string;
|
|
24
|
+
sources: typeof usedSources;
|
|
25
|
+
};
|