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

chore: apply prettier to the whole project #495

Merged
merged 1 commit into from
Sep 10, 2024
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
10 changes: 4 additions & 6 deletions etc/http-server.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

```ts

/// <reference types="node" />

import type * as http from 'http';
import type * as https from 'https';
import { IBaseComponent } from '@well-known-components/interfaces';
Expand Down Expand Up @@ -153,7 +151,7 @@ export type ServerComponents = {

// @beta (undocumented)
export type StandardStatusResponse = {
status: "pass" | "fail" | "warn";
status: 'pass' | 'fail' | 'warn';
version?: string;
releaseId?: string;
notes?: string[];
Expand All @@ -165,7 +163,7 @@ export type StandardStatusResponse = {

// @beta (undocumented)
export type StandardStatusResponseDetail = {
status: "pass" | "fail" | "warn";
status: 'pass' | 'fail' | 'warn';
componentType?: string;
componentId?: string;
};
Expand All @@ -184,8 +182,8 @@ export interface WebSocketServer {
// Warnings were encountered during analysis:
//
// dist/router.d.ts:20:5 - (ae-forgotten-export) The symbol "Layer" needs to be exported by the entry point index.d.ts
// dist/types.d.ts:23:5 - (ae-incompatible-release-tags) The symbol "ws" is marked as @public, but its signature references "WebSocketServer" which is marked as @alpha
// dist/types.d.ts:29:5 - (ae-forgotten-export) The symbol "CorsOptions" needs to be exported by the entry point index.d.ts
// dist/types.d.ts:19:5 - (ae-incompatible-release-tags) The symbol "ws" is marked as @public, but its signature references "WebSocketServer" which is marked as @alpha
// dist/types.d.ts:25:5 - (ae-forgotten-export) The symbol "CorsOptions" needs to be exported by the entry point index.d.ts

// (No @packageDocumentation comment for this package)

Expand Down
Loading
Loading