UNPKG
capacitor-plugin-scanbot-barcode-scanner-sdk
Version:
alpha (8.0.1-alpha.1)
latest (8.0.0)
rc (8.0.0-rc.4)
9.0.0-alpha.2
9.0.0-alpha.1
8.0.1-alpha.1
8.0.0
8.0.0-rc.4
8.0.0-rc.3
8.0.0-rc.2
8.0.0-rc.1
7.1.1
7.1.1-rc.2
7.1.1-rc.1
7.1.0
7.1.0-rc.2
7.1.0-rc.1
7.0.0
7.0.0-rc.4
7.0.0-rc.3
7.0.0-rc.2
7.0.0-rc.1
7.0.0-alpha.1
6.1.0
6.1.0-rc.2
6.1.0-rc.1
5.1.0
5.1.0-rc.2
5.1.0-rc.1
4.2.0
4.2.0-rc.2
4.2.0-rc.1
4.2.0-alpha.1
Scanbot Barcode Scanner SDK for Capacitor
scanbot.io/developer/capacitor-barcode-scanner-sdk/
capacitor-plugin-scanbot-barcode-scanner-sdk
/
dist
/
esm
/
utils.d.ts
11 lines
(10 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
declare
class
PartiallyConstructible
{ }
export
type
DeepPartial
<T> = T
extends
PartiallyConstructible
? { [P
in
keyof T]?:
DeepPartial
<T[P]>; } : T;
export
declare
class
Point
{
x
:
number
;
y
:
number
;
constructor
(
x
:
number
,
y
:
number
); }