diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-01-11 14:13:55 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-01-11 14:13:55 -0400 |
commit | 95cd0873ca80f05acb4100ebe08bc43e8107a429 (patch) | |
tree | 55771ce36b8aec6201b9161465505a3f62eb5605 /src/data | |
parent | 5b16090a206db99a266fcc006921782b37f8d1a0 (diff) |
find, reverse: factor out some common interfaces & stub reverse
no bindReverse yet
Diffstat (limited to 'src/data')
-rw-r--r-- | src/data/thing.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/data/thing.js b/src/data/thing.js index 78ad3642..4c3ba3e4 100644 --- a/src/data/thing.js +++ b/src/data/thing.js @@ -16,6 +16,8 @@ export default class Thing extends CacheableObject { static findSpecs = Symbol.for('Thing.findSpecs'); static findThisThingOnly = Symbol.for('Thing.findThisThingOnly'); + static reverseSpecs = Symbol.for('Thing.reverseSpecs'); + static yamlDocumentSpec = Symbol.for('Thing.yamlDocumentSpec'); static getYamlLoadingSpec = Symbol.for('Thing.getYamlLoadingSpec'); |