craydent-cli
Version:
Node module to manage command line execution and arguments
24 lines (23 loc) • 487 B
TypeScript
import * as ICLI from './methods/cli';
declare global {
interface Craydent {
CLI: typeof ICLI.default;
}
namespace NodeJS {
interface Global {
$c: Craydent;
}
}
interface Window {
$c: Craydent;
}
var $c: Craydent;
namespace NodeJS {
interface Global {
CLI: typeof ICLI.default;
}
}
const CLI: typeof ICLI.default;
}
declare const _default: Craydent;
export default _default;