/*=====================================================================*/ /* serrano/prgm/project/hiphop/hiphop/modules/promise.d.ts */ /* ------------------------------------------------------------- */ /* Author : Manuel Serrano */ /* Creation : Mon Apr 8 09:31:28 2024 */ /* Last change : Wed Apr 10 10:43:47 2024 (serrano) */ /* Copyright : 2024 Manuel Serrano */ /* ------------------------------------------------------------- */ /* Timeout module type */ /*=====================================================================*/ /*---------------------------------------------------------------------*/ /* Import */ /*---------------------------------------------------------------------*/ import type { HipHopFragment } from "../lib/hiphop.d.ts"; /*---------------------------------------------------------------------*/ /* Export */ /*---------------------------------------------------------------------*/ export interface Promise { out: any; } export const promise: HipHopFragment;