kubernetes/ts/kubernetes.plugins.ts

21 lines
421 B
TypeScript
Raw Normal View History

2020-01-19 10:57:41 +00:00
// node native scope
import * as path from 'path';
2020-01-25 18:52:46 +00:00
export { path };
2020-01-19 10:57:41 +00:00
// tsclass scope
import * as tsclass from '@tsclass/tsclass';
2020-01-25 18:52:46 +00:00
export { tsclass };
2020-01-19 10:57:41 +00:00
// pushrocks scope
import * as smartpath from '@pushrocks/smartpath';
import * as smartstring from '@pushrocks/smartstring';
2020-01-25 18:52:46 +00:00
export { smartpath, smartstring };
2020-01-19 10:57:41 +00:00
// 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
2020-01-25 18:52:46 +00:00
export { kubeclient as kubectl };