@juhuu/sdk-ts 1.2.280 → 1.2.281
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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -342,7 +342,7 @@ declare namespace Layout {
|
|
|
342
342
|
}
|
|
343
343
|
export interface General extends FormBlock {
|
|
344
344
|
type: "form";
|
|
345
|
-
columnArray: Array<
|
|
345
|
+
columnArray: Array<AnyColumn>;
|
|
346
346
|
}
|
|
347
347
|
export type AnyColumn = Column.One | Column.Two;
|
|
348
348
|
export namespace Column {
|
package/dist/index.d.ts
CHANGED
|
@@ -342,7 +342,7 @@ declare namespace Layout {
|
|
|
342
342
|
}
|
|
343
343
|
export interface General extends FormBlock {
|
|
344
344
|
type: "form";
|
|
345
|
-
columnArray: Array<
|
|
345
|
+
columnArray: Array<AnyColumn>;
|
|
346
346
|
}
|
|
347
347
|
export type AnyColumn = Column.One | Column.Two;
|
|
348
348
|
export namespace Column {
|