7 lines
133 B
TypeScript
7 lines
133 B
TypeScript
import type {IntoInterator} from './types';
|
|
|
|
export default function includes<T>(
|
|
target: IntoInterator<T>,
|
|
value: T
|
|
): boolean;
|