@v4fire/core
Version:
V4Fire core library
19 lines (18 loc) • 580 B
TypeScript
/*!
* V4Fire Core
* https://github.com/V4Fire/Core
*
* Released under the MIT license
* https://github.com/V4Fire/Core/blob/master/LICENSE
*/
import type { AsyncOptions } from '../../../../core/async/modules/events';
/**
* Returns true if the specified value is looks like an instance of AsyncOptions
* @param value
*/
export declare function isAsyncOptions<T extends object = AsyncOptions>(value: unknown): value is T;
/**
* @deprecated
* @see isAsyncOptions
*/
export declare const isParams: import("../../../../core/functools").WarnedFn<[value: unknown], boolean>;