@mcma/data
Advanced tools
Comparing version 0.6.3 to 0.7.0
import { Resource, ResourceType } from "@mcma/core"; | ||
export abstract class DbTable<T extends Resource> { | ||
constructor(type: ResourceType<T>); | ||
protected constructor(type: ResourceType<T>); | ||
@@ -12,4 +12,6 @@ query(filter: any): Promise<T[]>; | ||
export type DbTableProvider<T extends Resource> = (tableName: string) => DbTable<T>; | ||
export interface DbTableProvider<T extends Resource> { | ||
get(tableName: string): DbTable<T>; | ||
} | ||
export as namespace McmaData; |
{ | ||
"name": "@mcma/data", | ||
"version": "0.6.3", | ||
"version": "0.7.0", | ||
"description": "Node module with helper utils for dealing with data in the EBU MCMA framework", | ||
@@ -27,8 +27,8 @@ "engines": { | ||
"peerDependencies": { | ||
"@mcma/core": "0.6.3" | ||
"@mcma/core": "0.7.0" | ||
}, | ||
"devDependencies": { | ||
"@mcma/core": "0.6.3", | ||
"@mcma/core": "0.7.0", | ||
"jasmine": "^3.3.1" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1783
31