AccessScopeResolver type

Resolves the current request's value for one access level: - undefined — the level does not constrain this request (skip it), - null — active but there is no value → deny (match nothing), - a string — match rows where a scope column equals it, - an array — match rows where a scope column is IN it (empty → deny).

Signature:

export type AccessScopeResolver = () => string | string[] | null | undefined;

Read this page as plain markdown — no HTML, no navigation. For pasting into an LLM, or for an agent to fetch.