Typescript - Namespace
Table of Contents
About
namespace in Typescript.
namespace describe types or values accessed by dotted notation.
Use namespaces to organize types.
declare namespace GreetingLib {
interface LogOptions {
verbose?: boolean;
}
interface AlertOptions {
modal: boolean;
title?: string;
color?: string;
}
}