UNPKG

@visactor/vrender-core

Version:

```typescript import { xxx } from '@visactor/vrender-core'; ```

10 lines (9 loc) 317 B
import type { interfaces } from '../interfaces/interfaces'; declare class QueryableString implements interfaces.QueryableString { private str; constructor(str: string); contains(searchString: string): boolean; equals(compareString: string): boolean; value(): string; } export { QueryableString };