Skip to content

Commit ba5d256

Browse files
committed
progress
1 parent 5c7aa78 commit ba5d256

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

packages/@postgres-language-server/backend-jsonrpc/src/workspace.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,11 @@ export type Advice =
139139
/**
140140
* Represents the resource a diagnostic is associated with.
141141
*/
142-
export type Resource_for_String = "argv" | "memory" | { file: string };
142+
export type Resource_for_String =
143+
| "database"
144+
| "argv"
145+
| "memory"
146+
| { file: string };
143147
export type TextRange = [TextSize, TextSize];
144148
export interface MarkupNodeBuf {
145149
content: string;

packages/@postgrestools/backend-jsonrpc/src/workspace.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,11 @@ export type Advice =
139139
/**
140140
* Represents the resource a diagnostic is associated with.
141141
*/
142-
export type Resource_for_String = "argv" | "memory" | { file: string };
142+
export type Resource_for_String =
143+
| "database"
144+
| "argv"
145+
| "memory"
146+
| { file: string };
143147
export type TextRange = [TextSize, TextSize];
144148
export interface MarkupNodeBuf {
145149
content: string;

0 commit comments

Comments
 (0)