@maddimathon/utility-typescript
Version:
TypeScript utilities (types, functions, classes) to use in various projects.
34 lines (33 loc) • 981 B
TypeScript
/**
* Exports all global types (no JavaScript).
*
* @category Secondary Endpoints
*
* @module types
*
* @since 0.1.0
* @since 2.0.0-beta.2 — Now only available at its own path, not as a namespace from the main export path.
*
* @example
* ```ts
* import type { ... } from '@maddimathon/utility-typescript/types';
* ```
*/
/*!
* @maddimathon/utility-typescript@2.0.0-beta.5
* @license MIT
*/
export type * from './arrays.ts';
export type * from './functions.js';
export type * from './json/PackageJson.js';
export type * from './json/TsConfig.js';
export type * from './debug.js';
export type * from './objects/classes.js';
export type * from './objects/keys.js';
export type * from './objects/partial.js';
export type * from './objects/records.js';
export type * from './objects/required.js';
export type * from './objects/utilities.js';
export type * from './string-literals/html.js';
export type * as Test from './test.js';
export type * from './utilities.js';