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