UNPKG

358 BTypeScriptView Raw
1import type { Main } from '../index.js';
2/**
3@hidden
4*/
5export declare const testSymbol: unique symbol;
6/**
7@hidden
8*/
9export declare const isPredicate: (value: unknown) => value is BasePredicate<unknown>;
10/**
11@hidden
12*/
13export type BasePredicate<T = unknown> = {
14 [testSymbol](value: T, main: Main, label: string | Function, idLabel?: boolean): void;
15};