11 lines
405 B
JavaScript
11 lines
405 B
JavaScript
(function (root) {
|
|
const databases = Object.freeze([
|
|
'stackchain-background-outbox-v1',
|
|
'stackchain-offline-work-v2',
|
|
'stackchain-unfiled-captures-v1',
|
|
'stackchain-voice-transcripts-v1',
|
|
]);
|
|
if (typeof module !== 'undefined' && module.exports) module.exports = databases;
|
|
else root.stackchainPrivateDatabases = databases;
|
|
})(typeof globalThis !== 'undefined' ? globalThis : this);
|