@@ -13,7 +13,7 @@ export declare const SendConfigEmail: t.PartialC<{
1313 subject : t . StringC ;
1414 text : t . StringC ;
1515} > ;
16- export declare type SendConfigEmail = t . TypeOf < typeof SendConfigEmail > ;
16+ export type SendConfigEmail = t . TypeOf < typeof SendConfigEmail > ;
1717export declare const SendConfigEmit_required : t . ExactC < t . TypeC < {
1818 raw_event : t . ObjectC ;
1919} > > ;
@@ -25,7 +25,7 @@ export declare const SendConfigEmit: t.IntersectionC<[t.ExactC<t.TypeC<{
2525} > > , t . PartialC < {
2626 event : t . ObjectC ;
2727} > ] > ;
28- export declare type SendConfigEmit = t . TypeOf < typeof SendConfigEmit > ;
28+ export type SendConfigEmit = t . TypeOf < typeof SendConfigEmit > ;
2929export declare const HTTP_METHODS : string [ ] ;
3030export declare const SendConfigHTTP : t . IntersectionC < [ t . ExactC < t . TypeC < {
3131 method : t . KeyofC < { } > ;
@@ -39,18 +39,18 @@ export declare const SendConfigHTTP: t.IntersectionC<[t.ExactC<t.TypeC<{
3939 headers : t . ObjectC ;
4040 params : t . ObjectC ;
4141} > ] > ;
42- export declare type SendConfigHTTP = t . TypeOf < typeof SendConfigHTTP > ;
42+ export type SendConfigHTTP = t . TypeOf < typeof SendConfigHTTP > ;
4343export declare const SendConfigS3 : t . ExactC < t . TypeC < {
4444 bucket : t . StringC ;
4545 payload : t . UnionC < [ t . StringC , t . ObjectC ] > ;
4646 prefix : t . StringC ;
4747} > > ;
48- export declare type SendConfigS3 = t . TypeOf < typeof SendConfigS3 > ;
48+ export type SendConfigS3 = t . TypeOf < typeof SendConfigS3 > ;
4949export declare const SendConfigSQL : t . ExactC < t . TypeC < {
5050 payload : t . UnionC < [ t . StringC , t . ObjectC ] > ;
5151 table : t . StringC ;
5252} > > ;
53- export declare type SendConfigSQL = t . TypeOf < typeof SendConfigSQL > ;
53+ export type SendConfigSQL = t . TypeOf < typeof SendConfigSQL > ;
5454export declare const SendConfigSnowflake : t . ExactC < t . TypeC < {
5555 account : t . StringC ;
5656 database : t . StringC ;
@@ -62,12 +62,12 @@ export declare const SendConfigSnowflake: t.ExactC<t.TypeC<{
6262 stage_name : t . StringC ;
6363 user : t . StringC ;
6464} > > ;
65- export declare type SendConfigSnowflake = t . TypeOf < typeof SendConfigSnowflake > ;
65+ export type SendConfigSnowflake = t . TypeOf < typeof SendConfigSnowflake > ;
6666export declare const SendConfigSSE : t . ExactC < t . TypeC < {
6767 channel : t . StringC ;
6868 payload : t . UnionC < [ t . StringC , t . ObjectC ] > ;
6969} > > ;
70- export declare type SendConfigSSE = t . TypeOf < typeof SendConfigSSE > ;
70+ export type SendConfigSSE = t . TypeOf < typeof SendConfigSSE > ;
7171interface SendFunctionsWrapper {
7272 email : ( config : SendConfigEmail ) => void ;
7373 emit : ( config : SendConfigEmit ) => void ;
0 commit comments