Files
smartocr/ts/smartocr.plugins.ts
T

26 lines
592 B
TypeScript
Raw Normal View History

2021-11-29 16:29:15 +01:00
// node native
import * as path from 'path';
export {
path
}
// @pushrocks scope
2024-04-18 16:43:32 +02:00
import * as smartfile from '@push.rocks/smartfile';
2026-05-19 06:42:42 +00:00
import * as smartaiDocument from '@push.rocks/smartai/document';
import * as smartaiOcr from '@push.rocks/smartai/ocr';
2024-04-18 16:43:32 +02:00
import * as smartshell from '@push.rocks/smartshell';
import * as smartunique from '@push.rocks/smartunique';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
2021-11-29 16:29:15 +01:00
export {
smartfile,
2026-05-19 06:42:42 +00:00
smartaiDocument,
smartaiOcr,
2021-11-29 16:29:15 +01:00
smartshell,
smartunique,
2024-04-18 16:43:32 +02:00
smartpath,
2021-11-29 16:29:15 +01:00
smartpromise
}