OptimalBits / node_acl

Access control lists for node applications
2.62k stars 369 forks source link

Now exported interface Acl #259

Open rmuhamedgaliev opened 6 years ago

rmuhamedgaliev commented 6 years ago

In index.d.ts exists constructor with return type Acl

interface AclStatic {
    new (backend: Backend<any>, logger: Logger, options: Option): Acl;
    new (backend: Backend<any>, logger: Logger): Acl;
    new (backend: Backend<any>): Acl;
    memoryBackend: MemoryBackendStatic;
}

But not exported interface Acl.