From 92704727c9b8ae12597a3a2b6df0fde6bf461af8 Mon Sep 17 00:00:00 2001 From: Reza Soltani Date: Tue, 19 Dec 2023 01:18:09 +0330 Subject: [PATCH] update docs --- etc/solid-typeindex-support.api.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/etc/solid-typeindex-support.api.md b/etc/solid-typeindex-support.api.md index dbe740d..f3daf1f 100644 --- a/etc/solid-typeindex-support.api.md +++ b/etc/solid-typeindex-support.api.md @@ -4,11 +4,19 @@ ```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; static getFromTypeIndex(webId: string, rdfClass: string, fetch: any, isPrivate: true): Promise; + static getMeProfile(webId: string, fetch: any): Promise; + static getTypeIndex(webId: string, fetch: any, isPrivate: boolean): Promise>; + 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; }