kubernetes/ts/kubernetes.plugins.ts

30 lines
428 B
TypeScript
Raw Normal View History

2020-01-19 10:57:41 +00:00
// node native scope
import * as path from 'path';
export {
path
}
// tsclass scope
import * as tsclass from '@tsclass/tsclass';
export {
tsclass
}
// pushrocks scope
import * as smartpath from '@pushrocks/smartpath';
import * as smartstring from '@pushrocks/smartstring';
export {
smartpath,
smartstring
}
// third party scope
2020-01-18 17:33:57 +00:00
import * as kubeclient from 'kubernetes-client';
2020-01-15 14:08:06 +00:00
export {
2020-01-18 17:33:57 +00:00
kubeclient as kubectl
2020-01-15 14:08:06 +00:00
};