Skip to content

Commit c9cf112

Browse files
author
Dawid Małecki
committed
make a call
1 parent bbedfbe commit c9cf112

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

rollup.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1748,7 +1748,7 @@ export declare type ModalProps = ModalBaseProps &
17481748
export declare interface ModalPropsAndroid {
17491749
hardwareAccelerated?: boolean | undefined;
17501750
statusBarTranslucent?: boolean | undefined;
1751-
navigationBarTranslucent?: boolean;
1751+
navigationBarTranslucent?: boolean | undefined;
17521752
}
17531753
export 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';
29852985
export declare interface SubscribableMixin {
29862986
addListenerOn(
29872987
eventEmitter: any,
@@ -3826,3 +3826,4 @@ export declare type WrapperComponentProvider = (
38263826
appParameters: any
38273827
) => React_2.ComponentType<any>;
38283828
export * from '@react-native/virtualized-lists';
3829+
export {};

scripts/diff-ollama-prototype.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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

8079
main().catch(console.error);

0 commit comments

Comments
 (0)