123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- import { App } from '../app';
- import { ListModelsResult as TListModelsResult, MachineLearning as TMachineLearning, Model as TModel, TFLiteModel as TTFLiteModel } from './machine-learning';
- import { GcsTfliteModelOptions as TGcsTfliteModelOptions, ListModelsOptions as TListModelsOptions, ModelOptions as TModelOptions, ModelOptionsBase as TModelOptionsBase } from './machine-learning-api-client';
- export declare function machineLearning(app?: App): machineLearning.MachineLearning;
- export declare namespace machineLearning {
-
- type ListModelsResult = TListModelsResult;
-
- type MachineLearning = TMachineLearning;
-
- type Model = TModel;
-
- type TFLiteModel = TTFLiteModel;
-
- type GcsTfliteModelOptions = TGcsTfliteModelOptions;
-
- type ListModelsOptions = TListModelsOptions;
-
- type ModelOptions = TModelOptions;
-
- type ModelOptionsBase = TModelOptionsBase;
- }
|