@documentica/webdav
Version:
Documentica Webdav Client
16 lines (15 loc) • 442 B
TypeScript
import { IDavCodec } from '../types';
export interface IAce {
principal: string | null;
invertprincipal?: boolean;
grantdeny: "grant" | "deny" | null;
isprotected?: boolean;
privileges: string[];
inherited: string | null;
expirationDate?: Date;
password?: string;
invitationList?: string[];
}
export declare function fromXML(nodeList: NodeList): IAce;
declare const codec: IDavCodec;
export default codec;