Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 1x 1x 1x 1x | /** * @namespace ChildNamespace * @description This namespace serves as a container for various child components of the ts-workspace module. * @summary Child namespace containing additional components that extend the functionality of the parent namespace. * * The namespace includes: * - Child class definitions (from "./ChildClass") * - Child interface declarations (from "./ChildInterface") * - Enum declarations (from "./Enum") * - Utility functions (from "./function") * * This namespace provides additional tools and structures that complement the core components * of the ts-workspace module, allowing for more specialized and extended use cases. * * @see {@link ChildClass} for extended class implementations * @see {@link ChildInterface} for additional interface declarations * @see {@link Enum} for enumeration types * @see {@link function} for utility functions * * @memberOf module:ts-workspace.Namespace */ export * from "./ChildClass"; export * from "./ChildInterface"; export * from "./Enum"; export * from "./function"; |