/** * KHAELOR * File: src/shared/index.ts * Description: Public barrel for the shared module (Layer 0 — imports nothing). * * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai */ export { KhaelorError, isKhaelorError } from "./errors.js"; export type { KhaelorErrorCode } from "./errors.js"; export { ok, err, unwrap } from "./result.js"; export type { Result, Unsubscribe } from "./result.js"; export { ulid, isUlid } from "./ids.js";