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

id.ts (345B)


      1 export function ID(): ParameterDecorator {
      2   return function(target: any, propertyKey: string | symbol | undefined, index: number) {
      3     // TBD
      4     // const paramTypes: any[] = Reflect.getMetadata('design:paramtypes', target);
      5     // paramTypes[index] = identifier;
      6     // Reflect.defineMetadata('design:paramtypes', paramTypes, target);
      7   };
      8 }