@jimhoyd/urlcode-admin 0.1.0-alpha.1 → 0.1.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/admin-recovery.d.ts +1 -1
- package/package.json +1 -1
package/dist/admin-recovery.d.ts
CHANGED
|
@@ -19,6 +19,6 @@ export interface AdminRecoveryOptions {
|
|
|
19
19
|
}
|
|
20
20
|
/** The service is the authorization boundary; this handler supplies CSRF and delivery gates. */
|
|
21
21
|
export declare function createAdminRecovery(options: AdminRecoveryOptions, http: AuthHttp, mount: string): {
|
|
22
|
-
enabled: () =>
|
|
22
|
+
enabled: () => boolean;
|
|
23
23
|
handle(request: ExtensionRequest, principal: AuthPrincipal, actorToken: string, render: ScreenOptions): Promise<Awaited<ReturnType<ExtensionInstance["handle"]>> | undefined>;
|
|
24
24
|
};
|