UNPKG

@maddimathon/utility-typescript

Version:

TypeScript utilities (types, functions, classes) to use in various projects.

25 lines 676 B
/** * Exports all global types (no JavaScript). * * @module Types * * @since 0.1.0 * * @example * ```ts * import type { Types } from '@maddimathon/utility-typescript'; * import type { ... } from '@maddimathon/utility-typescript/types'; * ``` */ /*! * @maddimathon/utility-typescript@2.0.0-beta.1 * @license MIT */ export type * from './arrays/index.ts'; export type * from './functions/index.ts'; export type * as Json from './json/index.ts'; export type * as Debug from './debug.js'; export type * as Objects from './objects/index.ts'; export type * from './string-literals/index.ts'; export type * as Test from './test.js'; //# sourceMappingURL=index.d.ts.map