// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only const { timers } = window.SignalContext; export type { Timeout } from './context/Timers'; export function setTimeout( ...args: Parameters ): ReturnType { return timers.setTimeout(...args); } export function clearTimeout( ...args: Parameters ): ReturnType { return timers.clearTimeout(...args); }