UNPKG

redisai-js

Version:

A high-performance Typescript client for RedisAI

30 lines (23 loc) 684 B
/// <reference types="node" /> /** * Direct mapping to RedisAI Model */ import {Backend} from './Backend'; export declare class Model { constructor(backend: Backend, device: string, inputs: string[], outputs: string[], blob: Buffer | undefined); private _backend; get backend(): Backend; set backend(value: Backend); private _device; get device(): string; set device(value: string); private _inputs; get inputs(): string[]; set inputs(value: string[]); private _outputs; get outputs(): string[]; set outputs(value: string[]); private _blob; get blob(): Buffer | undefined; set blob(value: Buffer | undefined); }