Skip to content

Commit 6301285

Browse files
psteinroeclaude
andcommitted
Apply biome formatting to generated schema-cache.d.ts
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e81c443 commit 6301285

1 file changed

Lines changed: 7 additions & 32 deletions

File tree

packages/@postgres-language-server/wasm/src/schema-cache.d.ts

Lines changed: 7 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -207,43 +207,18 @@ export interface FunctionArgs {
207207
/**
208208
* `Behavior` describes the characteristics of the function. Is it deterministic? Does it changed due to side effects, and if so, when?
209209
*/
210-
export type Behavior =
211-
| "Immutable"
212-
| "Stable"
213-
| "Volatile";
214-
export type ProcKind =
215-
| "Function"
216-
| "Aggregate"
217-
| "Window"
218-
| "Procedure";
219-
export type PolicyCommand =
220-
| "Select"
221-
| "Insert"
222-
| "Update"
223-
| "Delete"
224-
| "All";
225-
export type ReplicaIdentity =
226-
| "Default"
227-
| "Index"
228-
| "Full"
229-
| "Nothing";
210+
export type Behavior = "Immutable" | "Stable" | "Volatile";
211+
export type ProcKind = "Function" | "Aggregate" | "Window" | "Procedure";
212+
export type PolicyCommand = "Select" | "Insert" | "Update" | "Delete" | "All";
213+
export type ReplicaIdentity = "Default" | "Index" | "Full" | "Nothing";
230214
export type TableKind =
231215
| "Ordinary"
232216
| "View"
233217
| "MaterializedView"
234218
| "Partitioned";
235-
export type TriggerAffected =
236-
| "Row"
237-
| "Statement";
238-
export type TriggerEvent =
239-
| "Insert"
240-
| "Delete"
241-
| "Update"
242-
| "Truncate";
243-
export type TriggerTiming =
244-
| "Before"
245-
| "After"
246-
| "Instead";
219+
export type TriggerAffected = "Row" | "Statement";
220+
export type TriggerEvent = "Insert" | "Delete" | "Update" | "Truncate";
221+
export type TriggerTiming = "Before" | "After" | "Instead";
247222
export interface TypeAttributes {
248223
attrs: PostgresTypeAttribute[];
249224
}

0 commit comments

Comments
 (0)