react-native-simple-note-pitch-detector 0.2.6 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { ReactNativeSimpleNotePitchDetectorViewProps } from "./ReactNativeSimpleNotePitchDetector.types";
3
+ export default function ExpoSettingsView(props: ReactNativeSimpleNotePitchDetectorViewProps): React.JSX.Element;
4
+ //# sourceMappingURL=ReactNativeSimpleNotePitchDetector.web.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReactNativeSimpleNotePitchDetector.web.d.ts","sourceRoot":"","sources":["../src/ReactNativeSimpleNotePitchDetector.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,2CAA2C,EAAE,MAAM,4CAA4C,CAAC;AAEzG,MAAM,CAAC,OAAO,UAAU,gBAAgB,CACtC,KAAK,EAAE,2CAA2C,qBAOnD"}
@@ -0,0 +1,6 @@
1
+ import * as React from "react";
2
+ export default function ExpoSettingsView(props) {
3
+ return (React.createElement("div", null,
4
+ React.createElement("span", null, props.name)));
5
+ }
6
+ //# sourceMappingURL=ReactNativeSimpleNotePitchDetector.web.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReactNativeSimpleNotePitchDetector.web.js","sourceRoot":"","sources":["../src/ReactNativeSimpleNotePitchDetector.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,MAAM,CAAC,OAAO,UAAU,gBAAgB,CACtC,KAAkD;IAElD,OAAO,CACL;QACE,kCAAO,KAAK,CAAC,IAAI,CAAQ,CACrB,CACP,CAAC;AACJ,CAAC","sourcesContent":["import * as React from \"react\";\n\nimport { ReactNativeSimpleNotePitchDetectorViewProps } from \"./ReactNativeSimpleNotePitchDetector.types\";\n\nexport default function ExpoSettingsView(\n props: ReactNativeSimpleNotePitchDetectorViewProps\n) {\n return (\n <div>\n <span>{props.name}</span>\n </div>\n );\n}\n"]}
@@ -0,0 +1,9 @@
1
+ import { ChangeEventPayload } from "./ReactNativeSimpleNotePitchDetector.types";
2
+ declare const _default: {
3
+ start: () => void;
4
+ stop: () => void;
5
+ isRecording: () => void;
6
+ onChangePitch: (_: ChangeEventPayload) => void;
7
+ };
8
+ export default _default;
9
+ //# sourceMappingURL=ReactNativeSimpleNotePitchDetectorModule.web.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReactNativeSimpleNotePitchDetectorModule.web.d.ts","sourceRoot":"","sources":["../src/ReactNativeSimpleNotePitchDetectorModule.web.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,4CAA4C,CAAC;;;;;uBAM3D,kBAAkB;;AAJvC,wBAKE"}
@@ -0,0 +1,7 @@
1
+ export default {
2
+ start: () => { },
3
+ stop: () => { },
4
+ isRecording: () => { },
5
+ onChangePitch: (_) => { },
6
+ };
7
+ //# sourceMappingURL=ReactNativeSimpleNotePitchDetectorModule.web.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReactNativeSimpleNotePitchDetectorModule.web.js","sourceRoot":"","sources":["../src/ReactNativeSimpleNotePitchDetectorModule.web.ts"],"names":[],"mappings":"AAEA,eAAe;IACb,KAAK,EAAE,GAAG,EAAE,GAAE,CAAC;IACf,IAAI,EAAE,GAAG,EAAE,GAAE,CAAC;IACd,WAAW,EAAE,GAAG,EAAE,GAAE,CAAC;IACrB,aAAa,EAAE,CAAC,CAAqB,EAAE,EAAE,GAAE,CAAC;CAC7C,CAAC","sourcesContent":["import { ChangeEventPayload } from \"./ReactNativeSimpleNotePitchDetector.types\";\n\nexport default {\n start: () => {},\n stop: () => {},\n isRecording: () => {},\n onChangePitch: (_: ChangeEventPayload) => {},\n};\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-simple-note-pitch-detector",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "a simple react native library to detect the pitch of the input recording",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -0,0 +1,13 @@
1
+ import * as React from "react";
2
+
3
+ import { ReactNativeSimpleNotePitchDetectorViewProps } from "./ReactNativeSimpleNotePitchDetector.types";
4
+
5
+ export default function ExpoSettingsView(
6
+ props: ReactNativeSimpleNotePitchDetectorViewProps
7
+ ) {
8
+ return (
9
+ <div>
10
+ <span>{props.name}</span>
11
+ </div>
12
+ );
13
+ }
@@ -0,0 +1,8 @@
1
+ import { ChangeEventPayload } from "./ReactNativeSimpleNotePitchDetector.types";
2
+
3
+ export default {
4
+ start: () => {},
5
+ stop: () => {},
6
+ isRecording: () => {},
7
+ onChangePitch: (_: ChangeEventPayload) => {},
8
+ };