export const NAME: "streams"; export const UPDATE_STREAMS: "UPDATE_STREAMS"; export const UPDATE_CURRENT_STREAM: "UPDATE_CURRENT_STREAM"; export namespace NEW_STREAM_FROM_WITSML { let NAME: string; let SUBSCRIPTIONS: { provider: string; collection: string; event: string; meta: { subscribeOnly: boolean; }; }[]; let SERVER_URLS: string[]; let SEGMENT_COLUMN_MAPPING: { [SEGMENTS.DRILLING]: { COLUMNS: ({ targetName: string; targetNameLabel: string; isRequired: boolean; isRequiredForCoil: boolean; } | { targetName: string; targetNameLabel: string; isRequired: boolean; })[]; AUTO_RESOLVER: { targetName: string; sourceNames: string[]; }[]; UNITS: ({ type: string; value: { imperial: string; metric: string; }; targetNames: string[]; } | { type: string; value: { imperial: string; metric: string; }; optionalValue: string; targetNames: string[]; } | { type: null; value: { imperial: string; metric: string; }; targetNames: string[]; })[]; }; [SEGMENTS.COMPLETION]: { COLUMNS: { targetName: string; targetNameLabel: string; isRequired: boolean; }[]; AUTO_RESOLVER: { targetName: string; sourceNames: string[]; }[]; UNITS: { type: string; value: { imperial: string; metric: string; }; targetNames: string[]; }[]; }; }; } import { SEGMENTS } from './segment'; //# sourceMappingURL=streams.d.ts.map