@solid/community-server
Version:
Community Solid Server: an open and modular implementation of the Solid specifications
9 lines (8 loc) • 376 B
TypeScript
import type { Quad } from '@rdfjs/types';
import { AsyncHandler } from 'asynchronous-handlers';
import type { ResourceIdentifier } from '../../http/representation/ResourceIdentifier';
/**
* Generates Quads that need to be added to the given storage description resource.
*/
export declare abstract class StorageDescriber extends AsyncHandler<ResourceIdentifier, Quad[]> {
}