File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1748,7 +1748,7 @@ export declare type ModalProps = ModalBaseProps &
17481748export declare interface ModalPropsAndroid {
17491749 hardwareAccelerated ?: boolean | undefined ;
17501750 statusBarTranslucent ?: boolean | undefined ;
1751- navigationBarTranslucent ?: boolean ;
1751+ navigationBarTranslucent ?: boolean | undefined ;
17521752}
17531753export declare interface ModalPropsIOS {
17541754 presentationStyle ?:
@@ -2981,7 +2981,7 @@ export declare interface StyleSheetProperties {
29812981 hairlineWidth : number ;
29822982 flatten < T extends string > ( style : T ) : T ;
29832983}
2984- export declare type SubmitBehavior = 'submit' | 'blurAndSubmit' ;
2984+ export declare type SubmitBehavior = 'submit' | 'blurAndSubmit' | 'newline' ;
29852985export declare interface SubscribableMixin {
29862986 addListenerOn (
29872987 eventEmitter : any ,
@@ -3826,3 +3826,4 @@ export declare type WrapperComponentProvider = (
38263826 appParameters : any
38273827) => React_2 . ComponentType < any > ;
38283828export * from '@react-native/virtualized-lists' ;
3829+ export { } ;
Original file line number Diff line number Diff line change @@ -71,10 +71,9 @@ async function main() {
7171 }
7272
7373 const diff = await getDiff ( ) ;
74- console . log ( diff ) ;
75- // const context = getContext(diff);
76- // const response = await callOllama(context);
77- // console.log(response);
74+ const context = getContext ( diff ) ;
75+ const response = await callOllama ( context ) ;
76+ console . log ( response ) ;
7877}
7978
8079main ( ) . catch ( console . error ) ;
You can’t perform that action at this time.
0 commit comments