@treecg/ldes-orchestrator
Version:
Fills the gaps that a Linked Data Platform (LDP) cannot do by itself for creating a Linked Data Event Stream (LDES) in LDP.
18 lines (17 loc) • 565 B
TypeScript
/***************************************
* Title: Acl
* Description: Util function to create Acl files
* Author: Wout Slabbinck (wout.slabbinck@ugent.be)
* Created on 30/11/2021
*****************************************/
import { Acl } from "./Interfaces";
export declare function createAclContent(id: string, modes: string[]): Acl;
export declare function createAclContent(id: string, modes: string[], agent: string): Acl;
export declare enum AccessSubject {
Agent = 0,
Public = 1
}
export declare enum AccessMode {
Read = 0,
ReadAppend = 1
}