@akanjs/base 1.0.7-canary.5 → 1.0.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.
- package/package.json +1 -1
- package/src/scalar.d.ts +5 -0
package/package.json
CHANGED
package/src/scalar.d.ts
CHANGED
|
@@ -13,6 +13,11 @@ export declare class BaseObject {
|
|
|
13
13
|
export declare class BaseInsight {
|
|
14
14
|
count: number;
|
|
15
15
|
}
|
|
16
|
+
export interface PrimitiveScalar<Name extends string, ServerValue, ClientValue> {
|
|
17
|
+
__Scalar__: Name;
|
|
18
|
+
serverValue: ServerValue;
|
|
19
|
+
clientValue: ClientValue;
|
|
20
|
+
}
|
|
16
21
|
export declare class Int {
|
|
17
22
|
__Scalar__: "int";
|
|
18
23
|
}
|