Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion types/google-publisher-tag/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "@types/google-publisher-tag",
"version": "1.20250811.9999",
"nonNpm": true,
"nonNpm": "conflict",
"nonNpmDescription": "Google Publisher Tag",
"projects": [
"https://developers.google.com/publisher-tag/"
Expand Down
4 changes: 0 additions & 4 deletions types/ramda/test/index-tests.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
import * as R from "ramda";
import * as dist from "ramda/dist/ramda";
import * as distMin from "ramda/dist/ramda.min";
import * as src from "ramda/src";
import * as srcIndex from "ramda/src/index";

(async () => {
const Res = await import("ramda");
const es = await import("ramda/es");
const esIndex = await import("ramda/es/index");

let typeChecker: typeof R;
typeChecker = R;
typeChecker = src;
typeChecker = srcIndex;
typeChecker = dist;
typeChecker = distMin;
typeChecker = Res;
typeChecker = es;
typeChecker = esIndex;
});
3 changes: 1 addition & 2 deletions types/ramda/test/maxBy-tests.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import * as R from "ramda";
import { Ord } from "ramda/tools";

(() => {
function cmp(obj: { x: Ord }) {
function cmp(obj: { x: number | string | boolean | Date }) {
return obj.x;
}

Expand Down
3 changes: 1 addition & 2 deletions types/ramda/test/minBy-tests.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import * as R from "ramda";
import { Ord } from "ramda/tools";

(() => {
function cmp(obj: { x: Ord }) {
function cmp(obj: { x: number | string | boolean | Date }) {
return obj.x;
}

Expand Down
3 changes: 0 additions & 3 deletions types/ramda/tools.d.ts

This file was deleted.

2 changes: 1 addition & 1 deletion types/tryghost__admin-api/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ interface AddFunction<T, U = undefined> {
interface EditFunction<T, U = undefined> {
(data: { id: string } & (U extends undefined ? { [key: string]: string } : U)): Promise<T>;
}
interface DeleteFunction<> {
interface DeleteFunction {
(data: { id: string } | { email: string }): Promise<void>;
}

Expand Down