query-engine.ts

Non-parsing query-engine on top of key-value storage
git clone git://git.finwo.net/lib/query-engine.ts
Log | Files | Refs | README | LICENSE

document.ts (234B)


      1 
      2 export function Document(): ClassDecorator {
      3   return targetConstructor => {
      4     // map.set(targetConstructor, {
      5     //   type  : targetConstructor,
      6     //   fn    : targetConstructor,
      7     //   value : EMPTY_VALUE,
      8     // });
      9   };
     10 }