Documentation
    Preparing search index...

    Interface AclPersistence

    ACL persistence — runtime calls these to save/load ACL state. Implementor decides storage backend (localStorage, file, DB, etc.).

    interface AclPersistence {
        load(): string | null;
        persist(data: string): void;
    }
    Index

    Methods

    Methods