mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
defda0905f
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
274 B
274 B
sidebar_label |
---|
Predicate |
Predicate type
Signature:
export type Predicate<From, To extends From = From> =
| ((value: From) => value is To)
| ((value: From) => Awaitable<boolean>);
References: Awaitable