UNPKG

weaviate-client

Version:
9 lines (8 loc) 297 B
import Connection from '../connection/index.js'; import { Meta } from '../openapi/types.js'; import { CommandBase } from '../validation/commandBase.js'; export default class MetaGetter extends CommandBase { constructor(client: Connection); validate(): void; do: () => Promise<Meta>; }