UNPKG

weaviate-client

Version:
11 lines (10 loc) 368 B
import Connection from '../connection/index.js'; import { CommandBase } from '../validation/commandBase.js'; export default class ClassExists extends CommandBase { private className?; constructor(client: Connection); withClassName: (className: string) => this; validateClassName: () => void; validate: () => void; do: () => Promise<boolean>; }