mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-15 21:32:45 -05:00
[Cherry-pick] Allow ambient accessors to omit their types unde… (#36280)
* Fix noImplicitAny check on ambient private getters (#33896) * Fix scripts. Co-authored-by: Klaus Meinhardt <klaus.meinhardt1@gmail.com>
This commit is contained in:
committed by
GitHub
parent
0dbaef52a9
commit
e0a286a01d
@@ -8,7 +8,7 @@ const mkdirp = require("mkdirp");
|
||||
const del = require("del");
|
||||
const File = require("vinyl");
|
||||
const ts = require("../../lib/typescript");
|
||||
const { default: chalk } = require("chalk");
|
||||
const chalk = require("chalk");
|
||||
const { spawn } = require("child_process");
|
||||
const { CancellationToken, CancelError, Deferred } = require("prex");
|
||||
const { Readable, Duplex } = require("stream");
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import * as Lint from "tslint";
|
||||
import chalk from "chalk";
|
||||
import chalk = require("chalk");
|
||||
import { sep } from "path";
|
||||
function groupBy<T>(array: ReadonlyArray<T> | undefined, getGroupId: (elem: T, index: number) => number | string): T[][] {
|
||||
if (!array) {
|
||||
|
||||
Reference in New Issue
Block a user