Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V9 #326

Merged
merged 14 commits into from
Aug 1, 2024
Prev Previous commit
Next Next commit
fixes the build
arch1995 committed Aug 1, 2024
commit 18935c4c897e59c11ab28291d11a37743656b4a7
2 changes: 1 addition & 1 deletion src/jrpc/mux.ts
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import { Duplex } from "readable-stream";
import type { Readable, Writable } from "stream";

import { BufferEncoding } from "./interfaces";
import Substream from "./substream";
import { Substream } from "./substream";

export const IGNORE_SUBSTREAM = Symbol("IGNORE_SUBSTREAM");


Unchanged files with check annotations Beta

/**
* Language specific link for terms and conditions on torus-website. See (examples/vue-app) to configure
* e.g.
* tncLink: {

Check warning on line 338 in src/utils/interfaces.ts

GitHub Actions / test (20.x, ubuntu-latest)

tsdoc-malformed-inline-tag: Expecting a TSDoc tag starting with "{@"
* en: "http://example.com/tnc/en",
* ja: "http://example.com/tnc/ja",
* }

Check warning on line 341 in src/utils/interfaces.ts

GitHub Actions / test (20.x, ubuntu-latest)

tsdoc-escape-right-brace: The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
*/
tncLink?: Partial<Record<LANGUAGE_TYPE, string>>;
/**
* Language specific link for privacy policy on torus-website. See (examples/vue-app) to configure
* e.g.
* privacyPolicy: {

Check warning on line 347 in src/utils/interfaces.ts

GitHub Actions / test (20.x, ubuntu-latest)

tsdoc-malformed-inline-tag: Expecting a TSDoc tag starting with "{@"
* en: "http://example.com/tnc/en",
* ja: "http://example.com/tnc/ja",
* }

Check warning on line 350 in src/utils/interfaces.ts

GitHub Actions / test (20.x, ubuntu-latest)

tsdoc-escape-right-brace: The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
*/
privacyPolicy?: Partial<Record<LANGUAGE_TYPE, string>>;
};