unlayer-types 1.286.0 → 1.289.0
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/embed.d.ts +14 -0
- package/package.json +1 -1
package/embed.d.ts
CHANGED
@@ -1631,6 +1631,20 @@ declare module "state/types/types" {
|
|
1631
1631
|
}, placeholder: string) => (dispatch: Dispatch, getState: () => RootState) => Promise<void>;
|
1632
1632
|
export interface JSONSchema {
|
1633
1633
|
}
|
1634
|
+
export type TableValue = {
|
1635
|
+
headers: {
|
1636
|
+
cells: {
|
1637
|
+
id: string;
|
1638
|
+
text: string;
|
1639
|
+
}[];
|
1640
|
+
}[];
|
1641
|
+
rows: {
|
1642
|
+
cells: {
|
1643
|
+
id: string;
|
1644
|
+
text: string;
|
1645
|
+
}[];
|
1646
|
+
}[];
|
1647
|
+
};
|
1634
1648
|
}
|
1635
1649
|
declare module "engine/utils/pruneObj" {
|
1636
1650
|
export function pruneObj<T extends Record<string, any>>(obj: T, options?: {
|
package/package.json
CHANGED