Skip to content

Commit

Permalink
update docs etc
Browse files Browse the repository at this point in the history
  • Loading branch information
soltanireza65 committed Dec 18, 2023
1 parent 8c2c74e commit 0e83583
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions etc/solid-typeindex-support.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,11 @@
```ts

import { NamedNode } from '@rdfjs/types';
import { SolidDataset } from '@inrupt/solid-client';
import { ThingPersisted } from '@inrupt/solid-client';

// @public
export class TypeIndexHelper {
static createTypeIndex(fetch: any, typeIndexUrl: string): Promise<SolidDataset | undefined>;
static getFromTypeIndex(webId: string, rdfClass: string, fetch: any, isPrivate: true): Promise<string[]>;
static getMeProfile(webId: string, fetch: any): Promise<ThingPersisted | null>;
static getTypeIndex(webId: string, fetch: any, isPrivate: boolean): Promise<NamedNode<string>>;
static getTypeIndexFileName(isPrivate: boolean): "privateTypeIndex" | "publicTypeIndex";
static getTypeIndexPredicate(isPrivate: boolean): string;
static getTypeIndexURL(webId: string, typeIndexFileName: string): string;
static registerInTypeIndex(webId: string, typeRegistrationTitle: string, rdfClass: string, fetch: any, indexUrl: string, isPrivate: boolean): Promise<SolidDataset>;
}

Expand Down

0 comments on commit 0e83583

Please sign in to comment.