human/src/tfjs/tfjs.esm.d.ts

21 lines
584 B
TypeScript
Raw Normal View History

2022-08-21 19:34:51 +02:00
/* eslint-disable import/no-extraneous-dependencies */
2021-10-31 13:03:42 +01:00
export declare const version: {
'tfjs-core': string;
'tfjs-backend-cpu': string;
'tfjs-backend-webgl': string;
'tfjs-data': string;
'tfjs-layers': string;
'tfjs-converter': string;
tfjs: string;
};
2022-08-21 19:34:51 +02:00
2021-10-31 13:03:42 +01:00
export * from '@tensorflow/tfjs-core';
export * from '@tensorflow/tfjs-converter';
export * from '@tensorflow/tfjs-data';
2022-08-21 19:34:51 +02:00
export * from '@tensorflow/tfjs-layers';
export * from '@tensorflow/tfjs-backend-cpu';
export * from '@tensorflow/tfjs-backend-wasm';
export * from '@tensorflow/tfjs-backend-webgl';
2021-10-31 13:03:42 +01:00
export {};