@ptkdev/node-module-boilerplate
Version:
Create your npm library with this user friendly boilerplate. Use this respository as template for your new node library/module
23 lines (22 loc) • 597 B
TypeScript
export namespace server {
const port: number;
}
export const language: string;
export const debug: string;
export namespace logger {
export namespace path {
const debug_log: string;
const error_log: string;
}
const language_1: string;
export { language_1 as language };
export const colors: boolean;
const debug_1: string;
export { debug_1 as debug };
export const info: string;
export const warning: string;
export const error: string;
export const sponsor: string;
export const write: boolean;
export const type: string;
}