@tossplace/pos-plugin-sdk 0.0.15 → 0.0.16
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.
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/sdk.d.ts +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +1 -1
package/dist/sdk.d.ts
CHANGED
|
@@ -1685,7 +1685,7 @@ declare type RadioInput = Omit<BaseInput, 'placeholder'> & {
|
|
|
1685
1685
|
|
|
1686
1686
|
declare type Response_2 = BarcodeResponse | InputResponse;
|
|
1687
1687
|
|
|
1688
|
-
declare function setInputs(inputs: Array<PluginInputs>): void
|
|
1688
|
+
declare function setInputs(inputs: Array<PluginInputs>): Promise<void>;
|
|
1689
1689
|
|
|
1690
1690
|
declare const setting: {
|
|
1691
1691
|
setInputs: typeof setInputs;
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -1665,7 +1665,7 @@ declare type RadioInput = Omit<BaseInput, 'placeholder'> & {
|
|
|
1665
1665
|
|
|
1666
1666
|
declare type Response_2 = BarcodeResponse | InputResponse;
|
|
1667
1667
|
|
|
1668
|
-
declare function setInputs(inputs: Array<PluginInputs>): void
|
|
1668
|
+
declare function setInputs(inputs: Array<PluginInputs>): Promise<void>;
|
|
1669
1669
|
|
|
1670
1670
|
declare const setting: {
|
|
1671
1671
|
setInputs: typeof setInputs;
|