deno.land / x / pasta@0.0.6 / src / database / pg-catalog.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Automatically generated by PASTAtype UUIDFunctionCall = { returnType: "uuid" };type TimestampFunctionCall = { returnType: "timestamp" };type JSONValue = | string | number | boolean | { [x: string]: JSONValue } | Array<JSONValue>;
function uuid() { return { "type": "call", "function": { "name": "gen_random_uuid" }, "args": [], "returnType": "uuid", } as UUIDFunctionCall;}
function now() { return ( { "type": "call", "function": { "name": "now" }, "args": [], "returnType": "timestamp", } as TimestampFunctionCall );}
const functions = { now, uuid,};export type { JSONValue, TimestampFunctionCall };export { functions, now, uuid };
pasta

Version Info

Tagged at
a year ago