lucid-extension-sdk 0.0.78 → 0.0.79
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
CHANGED
|
@@ -11,13 +11,15 @@ export declare type SerializedLucidCurrency = {
|
|
|
11
11
|
export declare type SerializedFields = {
|
|
12
12
|
[fieldName: string]: SerializedFieldType;
|
|
13
13
|
};
|
|
14
|
-
export declare type
|
|
15
|
-
'ms': number;
|
|
16
|
-
'isDateOnly'?: boolean;
|
|
17
|
-
} | {
|
|
14
|
+
export declare type SerializedIsoDateObject = {
|
|
18
15
|
'isoDate': string;
|
|
19
16
|
'displayTimezone'?: string;
|
|
20
17
|
};
|
|
18
|
+
export declare type SerializedMillisecondsDateObject = {
|
|
19
|
+
'ms': number;
|
|
20
|
+
'isDateOnly'?: boolean;
|
|
21
|
+
};
|
|
22
|
+
export declare type SerializedLucidDateObject = SerializedMillisecondsDateObject | SerializedIsoDateObject;
|
|
21
23
|
export declare type SerializedRGBColor = {
|
|
22
24
|
'r': number;
|
|
23
25
|
'g': number;
|