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 | 2x 2x 2x | export * from "./colors"; export * from "./constants"; export * from "./strings"; /** * @module StyledString * @description This module provides utilities for styling and manipulating strings in TypeScript. * @summary * The StyledString module exports functionality for working with colors, constants, and string manipulation. * It includes: * - Color-related utilities from {@link colors} * - Constant values from {@link constants} * - String manipulation functions from {@link strings} * * This module serves as the main entry point for the StyledString library, consolidating various * string-related functionalities into a single, easy-to-use package. */ |