File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
@postgres-language-server/backend-jsonrpc/src
@postgrestools/backend-jsonrpc/src Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff 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 } ;
143147export type TextRange = [ TextSize , TextSize ] ;
144148export interface MarkupNodeBuf {
145149 content : string ;
Original file line number Diff line number Diff 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 } ;
143147export type TextRange = [ TextSize , TextSize ] ;
144148export interface MarkupNodeBuf {
145149 content : string ;
You can’t perform that action at this time.
0 commit comments