12 lines
364 B
TypeScript
12 lines
364 B
TypeScript
|
|
// Node scope
|
||
|
|
import * as process from 'node:process';
|
||
|
|
export { process };
|
||
|
|
|
||
|
|
// @push.rocks scope
|
||
|
|
import * as qenv from '@push.rocks/qenv';
|
||
|
|
import * as smartdata from '@push.rocks/smartdata';
|
||
|
|
import * as smartinteract from '@push.rocks/smartinteract';
|
||
|
|
import * as smartunique from '@push.rocks/smartunique';
|
||
|
|
|
||
|
|
export { qenv, smartdata, smartinteract, smartunique };
|