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/nginstack__jsunit/lib/TestRunner.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ declare class TestRunner {
testSuitesPerTestCaseId_: Record<string, TestSuite>;
private logger_;
breakOnFailure: boolean;
cluster: any;
cluster: import("@nginstack/engine/lib/cluster/EngineCluster");
private readVfsTests_;
private readLocalTests_;
private logAndEmitEvent_;
Expand Down
3 changes: 1 addition & 2 deletions types/nginstack__jsunit/nginstack__jsunit-tests.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import TestSuite = require("@nginstack/jsunit/lib/TestSuite");

const suite = new TestSuite("fileId"); // $ExpectType TestSuite
const any = "*";

suite.version; // $ExpectType number
suite.filePath; // $ExpectType string
Expand All @@ -11,7 +10,7 @@ suite.fileEncoding; // $ExpectType string
suite.id; // $ExpectType string
suite.testCases; // $ExpectType TestCase[]

suite.getTestCase(any); // $ExpectType TestCase
suite.getTestCase("*"); // $ExpectType TestCase
suite.update(); // $ExpectType void
suite.setUp(); // $ExpectType void
suite.tearDown(); // $ExpectType void
Expand Down
4 changes: 4 additions & 0 deletions types/openui5/openui5-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import nextUIUpdate from "sap/ui/test/utils/nextUIUpdate";
import Link from "sap/m/Link";
import BaseObject from "sap/ui/base/Object";
import ObjectMarker from "sap/m/ObjectMarker";
import Theming from "sap/ui/core/Theming";

/*
* REMARK: the type definition files are automatically generated and this generation is tested,
Expand Down Expand Up @@ -259,3 +260,6 @@ new ObjectMarker().setReactiveAreaMode("Inline");

// 1.134
const gap: CSSGapShortHand = "1px 2px 3px 4px";

// 1.135
const theming = Theming.setFavicon("favicon.ico");
2 changes: 1 addition & 1 deletion types/openui5/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@types/openui5",
"version": "1.134.9999",
"version": "1.135.9999",
"nonNpm": true,
"nonNpmDescription": "openui5",
"projects": [
Expand Down
10 changes: 2 additions & 8 deletions types/openui5/sap.f.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// For Library Version: 1.134.0
// For Library Version: 1.135.0

declare module "sap/tnt/library" {
export interface IToolHeader {
Expand Down Expand Up @@ -20861,8 +20861,6 @@ declare module "sap/f/ShellBar" {

import { IBar } from "sap/m/library";

import { IToolHeader } from "sap/tnt/library";

import { BarContexts } from "sap/m/BarInPageEnabler";

import { URI } from "sap/ui/core/library";
Expand Down Expand Up @@ -20901,13 +20899,9 @@ declare module "sap/f/ShellBar" {
*
* @since 1.63
*/
export default class ShellBar
extends Control
implements IShellBar, IBar, IToolHeader
{
export default class ShellBar extends Control implements IShellBar, IBar {
__implements__sap_f_IShellBar: boolean;
__implements__sap_m_IBar: boolean;
__implements__sap_tnt_IToolHeader: boolean;
/**
* Constructor for a new `ShellBar`.
*
Expand Down
Loading