-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathshared.ts
50 lines (48 loc) · 847 Bytes
/
shared.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
38
39
40
41
42
43
44
45
46
47
48
49
50
import type { LiteralUnion } from '../generalTypes';
export type Extension =
| 'adminpack'
| 'amcheck'
| 'auth_delay'
| 'auto_explain'
| 'bloom'
| 'btree_gin'
| 'btree_gist'
| 'citext'
| 'cube'
| 'dblink'
| 'dict_int'
| 'dict_xsyn'
| 'earthdistance'
| 'file_fdw'
| 'fuzzystrmatch'
| 'hstore'
| 'intagg'
| 'intarray'
| 'isn'
| 'lo'
| 'ltree'
| 'pageinspect'
| 'passwordcheck'
| 'pg_buffercache'
| 'pgcrypto'
| 'pg_freespacemap'
| 'pg_prewarm'
| 'pgrowlocks'
| 'pg_stat_statements'
| 'pgstattuple'
| 'pg_trgm'
| 'pg_visibility'
| 'postgres_fdw'
| 'seg'
| 'sepgsql'
| 'spi'
| 'sslinfo'
| 'tablefunc'
| 'tcn'
| 'test_decoding'
| 'tsm_system_rows'
| 'tsm_system_time'
| 'unaccent'
| 'uuid-ossp'
| 'xml2';
export type StringExtension = LiteralUnion<Extension>;