auth.provider API
    Preparing search index...

    A module that bundles one or more grant factories together. Used with GrantRegistry.addModule() for plugin-style registration.

    interface GrantModule {
        configSchema?: ZodType<
            unknown,
            unknown,
            $ZodTypeInternals<unknown, unknown>,
        >;
        grants: Record<string, GrantFactory>;
    }
    Index

    Properties

    configSchema?: ZodType<unknown, unknown, $ZodTypeInternals<unknown, unknown>>
    grants: Record<string, GrantFactory>