lincd
Version:
LINCD is a JavaScript library for building user interfaces with linked data (also known as 'structured data', or RDF)
22 lines (21 loc) • 1.31 kB
TypeScript
import { Shape } from '../shapes/Shape';
import { NamedNode } from '../models';
export declare var FoafPerson: NamedNode;
export declare var name: NamedNode;
export declare var depiction: NamedNode;
export declare var knows: NamedNode;
export declare class Person extends Shape {
static targetClass: NamedNode;
get name(): string;
set name(val: string);
get depiction(): string;
set depiction(val: string);
get knows(): import("../collections/NodeValuesSet").NodeValuesSet;
}
export declare const Grid: import("../interfaces/Component").LinkedFunctionalSetComponent<{}, Shape>;
export declare const Card: import("../interfaces/Component").LinkedFunctionalComponent<{}, Person>;
export declare const PersonOverview: import("../interfaces/Component").LinkedFunctionalSetComponent<{}, Person>;
export declare const PersonOverviewWithConfigurableChildren: import("../interfaces/Component").LinkedFunctionalSetComponent<{}, Shape>;
export declare const PersonOverviewFixedGrid: import("../interfaces/Component").LinkedFunctionalSetComponent<{}, Person>;
export declare const PersonOverviewWithChildRenderFn: import("../interfaces/Component").LinkedFunctionalSetComponent<{}, Person>;
export declare const PersonNetwork: import("../interfaces/Component").LinkedFunctionalComponent<{}, Person>;