mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-12-12 03:20:56 -06:00
5 lines
189 B
TypeScript
5 lines
189 B
TypeScript
// @ts-check
|
|
|
|
// this just fixes the incorrect types for chalk :/
|
|
const chalk = /**@type {import("chalk").Chalk}*/(require("chalk").default || require("chalk"));
|
|
module.exports = chalk; |