@cruglobal/godtools-shared 0.9.0-SNAPSHOT.1202 → 0.9.0-SNAPSHOT.1212
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.
|
@@ -185,6 +185,16 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
185
185
|
};
|
|
186
186
|
}
|
|
187
187
|
}
|
|
188
|
+
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
189
|
+
/* @ts-ignore: extends class with private primary constructor */
|
|
190
|
+
class Form extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Parent {
|
|
191
|
+
private constructor();
|
|
192
|
+
get _content(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
|
|
193
|
+
get tips(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
|
|
194
|
+
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
195
|
+
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"];
|
|
196
|
+
}
|
|
197
|
+
}
|
|
188
198
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
189
199
|
class Gravity {
|
|
190
200
|
constructor(horizontal: org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal, vertical: org.cru.godtools.shared.tool.parser.model.Gravity.Vertical);
|
|
@@ -349,13 +359,17 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
349
359
|
class Text extends org.cru.godtools.shared.tool.parser.model.Content {
|
|
350
360
|
private constructor();
|
|
351
361
|
get text(): Nullable<string>;
|
|
352
|
-
get
|
|
362
|
+
get textAlign(): org.cru.godtools.shared.tool.parser.model.Text.Align;
|
|
363
|
+
get textColor(): string;
|
|
364
|
+
get textScale(): number;
|
|
365
|
+
get _textStyles(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.Text.Style> */;
|
|
353
366
|
get minimumLines(): number;
|
|
354
367
|
get startImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
355
368
|
get startImageSize(): number;
|
|
356
369
|
get endImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
357
370
|
get endImageSize(): number;
|
|
358
371
|
static createTestText(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, text?: Nullable<string>, textScale?: number, textColor?: Nullable<string>, textAlign?: Nullable<org.cru.godtools.shared.tool.parser.model.Text.Align>, textStyles?: any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.Text.Style> */, startImage?: Nullable<string>, endImage?: Nullable<string>): org.cru.godtools.shared.tool.parser.model.Text;
|
|
372
|
+
get textStyles(): Array<org.cru.godtools.shared.tool.parser.model.Text.Style>;
|
|
359
373
|
}
|
|
360
374
|
namespace Text {
|
|
361
375
|
abstract class Align {
|