@solid/community-server
Version:
Community Solid Server: an open and modular implementation of the Solid specifications
14 lines (13 loc) • 571 B
TypeScript
import { AsyncHandler } from 'asynchronous-handlers';
import type { Representation } from '../../http/representation/Representation';
import type { ResourceIdentifier } from '../../http/representation/ResourceIdentifier';
import type { ResourceStore } from '../ResourceStore';
/**
* Finds which store needs to be accessed for the given resource,
* potentially based on the Representation of incoming data.
*/
export declare abstract class RouterRule extends AsyncHandler<{
identifier: ResourceIdentifier;
representation?: Representation;
}, ResourceStore> {
}