a71f801c3f
- Prisma schema: User, Session, RepoConfig, Preview, Job, WebhookToken, NoConfigComment, AdminSettings - Backend: auth (login/logout/me/first-user setup), webhook handler with HMAC verification, EC2 service, SSH service, deploy pipeline, job queue worker, cron workers - Frontend: Login with first-user detection, Dashboard, PreviewDetail with live log streaming, Settings, Repos config, Admin panel, SetupWizard, Privacy page - Docker Compose and Dockerfile for self-hosted deployment - Uses bcryptjs for Node 24 compatibility Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
34 lines
749 B
TypeScript
34 lines
749 B
TypeScript
/**
|
|
* @since 2.0.0
|
|
*/
|
|
import type { Equivalence } from "./Equivalence.js";
|
|
import * as Hash from "./Hash.js";
|
|
/**
|
|
* @since 2.0.0
|
|
* @category symbols
|
|
*/
|
|
export declare const symbol: unique symbol;
|
|
/**
|
|
* @since 2.0.0
|
|
* @category models
|
|
*/
|
|
export interface Equal extends Hash.Hash {
|
|
[symbol](that: Equal): boolean;
|
|
}
|
|
/**
|
|
* @since 2.0.0
|
|
* @category equality
|
|
*/
|
|
export declare function equals<B>(that: B): <A>(self: A) => boolean;
|
|
export declare function equals<A, B>(self: A, that: B): boolean;
|
|
/**
|
|
* @since 2.0.0
|
|
* @category guards
|
|
*/
|
|
export declare const isEqual: (u: unknown) => u is Equal;
|
|
/**
|
|
* @since 2.0.0
|
|
* @category instances
|
|
*/
|
|
export declare const equivalence: <A>() => Equivalence<A>;
|
|
//# sourceMappingURL=Equal.d.ts.map
|