UNPKG

@stacksjs/ts-validation

Version:

A simple TypeScript starter kit using Bun.

10 lines 303 B
import type { ContainsOptions } from '../types'; /** * contains * * @param str - The string to check * @param elem - Options object * @param options - Options object * @returns The processed string */ export declare function contains(str: string, elem: string, options: ContainsOptions): boolean;