graphdb-workbench
Version:
The web application for GraphDB APIs
20 lines (19 loc) • 426 B
TypeScript
import { Model } from '../common';
/**
* Holds repository triples information.
*/
export declare class RepositorySizeInfo extends Model<RepositorySizeInfo> {
/**
* Number of inferred triples.
*/
inferred: number;
/**
* Number of all triples.
*/
total: number;
/**
* Number of explicit triples.
*/
explicit: number;
constructor(data?: Partial<RepositorySizeInfo>);
}