-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.ts
27 lines (26 loc) · 987 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import casingData from './casings.json' assert { type: 'json' };
import cementData from './cement.json' assert { type: 'json' };
import completion from './completion.json' assert { type: 'json' };
import coordinates from './coordinates.json' assert { type: 'json' };
import holeSizeData from './holesize.json' assert { type: 'json' };
import picks from './picks.json' assert { type: 'json' };
import poslog from './poslog.json' assert { type: 'json' };
import seismicColorMap from './seismic-colormap.json' assert { type: 'json' };
import seismic from './seismic.json' assert { type: 'json' };
import stratColumns from './strat-columns.json' assert { type: 'json' };
import surfaces from './surfaces.json' assert { type: 'json' };
import cementSqueezes from './cementSqueeze.json' assert { type: 'json' };
export {
casingData,
cementData,
completion,
coordinates,
holeSizeData,
picks,
poslog,
seismicColorMap,
seismic,
stratColumns,
surfaces,
cementSqueezes,
};