modern-idoc 0.9.0 → 0.9.1
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.cts +16 -8
- package/dist/index.d.mts +16 -8
- package/dist/index.d.ts +16 -8
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -810,12 +810,12 @@ type EventListenerValue<T extends any[] = any[]> = (...args: T) => void;
|
|
|
810
810
|
type EventListenerOptions = boolean | {
|
|
811
811
|
once?: boolean;
|
|
812
812
|
};
|
|
813
|
-
interface EventListener<T extends any[] = any[]> {
|
|
813
|
+
interface EventListener$1<T extends any[] = any[]> {
|
|
814
814
|
value: EventListenerValue<T>;
|
|
815
815
|
options?: EventListenerOptions;
|
|
816
816
|
}
|
|
817
817
|
declare class EventEmitter<T extends Record<string, any> = Record<string, any>> {
|
|
818
|
-
eventListeners: Map<keyof T, EventListener<any[]> | EventListener<any[]>[]>;
|
|
818
|
+
eventListeners: Map<keyof T, EventListener$1<any[]> | EventListener$1<any[]>[]>;
|
|
819
819
|
addEventListener<K extends keyof T>(event: K, listener: EventListenerValue<T[K]>, options?: EventListenerOptions): this;
|
|
820
820
|
removeEventListener<K extends keyof T>(event: K, listener: EventListenerValue<T[K]>, options?: EventListenerOptions): this;
|
|
821
821
|
removeAllListeners(): this;
|
|
@@ -838,9 +838,11 @@ declare function setNestedValue(obj: any, path: (string | number)[], value: any)
|
|
|
838
838
|
declare function getObjectValueByPath(obj: any, path: string, fallback?: any): any;
|
|
839
839
|
declare function setObjectValueByPath(obj: any, path: string, value: any): void;
|
|
840
840
|
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
841
|
+
type EventListener = (...args: any[]) => void;
|
|
842
|
+
interface ObservableEvents {
|
|
843
|
+
[event: string]: EventListener;
|
|
844
|
+
}
|
|
845
|
+
declare class Observable<T extends ObservableEvents = ObservableEvents> {
|
|
844
846
|
_observers: Map<string, Set<any>>;
|
|
845
847
|
on<K extends keyof T & string>(event: K, listener: T[K]): this;
|
|
846
848
|
once<K extends keyof T & string>(event: K, listener: T[K]): this;
|
|
@@ -858,10 +860,16 @@ declare class RawWeakMap<K extends WeakKey = WeakKey, V = any> {
|
|
|
858
860
|
set(key: K, value: V): this;
|
|
859
861
|
}
|
|
860
862
|
|
|
861
|
-
interface ReactivableEvents {
|
|
863
|
+
interface ReactivableEvents extends ObservableEvents {
|
|
862
864
|
updateProperty: (key: string, newValue: any, oldValue: any) => void;
|
|
863
865
|
}
|
|
864
|
-
|
|
866
|
+
interface Reactivable {
|
|
867
|
+
on: <K extends keyof ReactivableEvents & string>(event: K, listener: ReactivableEvents[K]) => this;
|
|
868
|
+
once: <K extends keyof ReactivableEvents & string>(event: K, listener: ReactivableEvents[K]) => this;
|
|
869
|
+
off: <K extends keyof ReactivableEvents & string>(event: K, listener: ReactivableEvents[K]) => this;
|
|
870
|
+
emit: <K extends keyof ReactivableEvents & string>(event: K, ...args: Parameters<ReactivableEvents[K]>) => this;
|
|
871
|
+
}
|
|
872
|
+
declare class Reactivable extends Observable implements PropertyAccessor {
|
|
865
873
|
protected _propertyAccessor?: PropertyAccessor;
|
|
866
874
|
protected _properties: Map<string, unknown>;
|
|
867
875
|
getProperty(key: string, defaultValue?: any): any;
|
|
@@ -873,4 +881,4 @@ declare class Reactivable extends Observable<ReactivableEvents> implements Prope
|
|
|
873
881
|
}
|
|
874
882
|
|
|
875
883
|
export { EventEmitter, Observable, RawWeakMap, Reactivable, clearUndef, defaultColor, defineProperty, flatDocumentToDocument, getDeclarations, getDefaultElementStyle, getDefaultHighlightStyle, getDefaultInnerShadow, getDefaultLayoutStyle, getDefaultListStyleStyle, getDefaultOuterShadow, getDefaultShadowStyle, getDefaultStyle, getDefaultTextInlineStyle, getDefaultTextLineStyle, getDefaultTextStyle, getDefaultTransformStyle, getNestedValue, getObjectValueByPath, getPropertyDescriptor, getPropertyInternalKey, hasCRLF, idGenerator, isCRLF, isColor, isColorFill, isColorFillObject, isEqualObject, isFragmentObject, isGradient, isGradientFill, isGradientFillObject, isImageFill, isImageFillObject, isNone, isParagraphObject, isPresetFill, isPresetFillObject, nanoid, normalizeAudio, normalizeBackground, normalizeCRLF, normalizeColor, normalizeColorFill, normalizeDocument, normalizeEffect, normalizeElement, normalizeFill, normalizeFlatDocument, normalizeForeground, normalizeGradient, normalizeGradientFill, normalizeImageFill, normalizeInnerShadow, normalizeOuterShadow, normalizeOutline, normalizePresetFill, normalizeShadow, normalizeShape, normalizeSoftEdge, normalizeStyle, normalizeText, normalizeTextContent, normalizeVideo, parseColor, parseGradient, pick, property, property2, round, setNestedValue, setObjectValueByPath, stringifyGradient, textContentToString };
|
|
876
|
-
export type { Align, AngularNode, Audio, Background, BackgroundObject, BackgroundSize, BorderStyle, BoxShadow, BoxSizing, CmykColor, CmykaColor, Color, ColorFill, ColorFillObject, ColorStop, ColorStopNode, DefaultRadialNode, Direction, DirectionalNode, Display, Document, Effect, EffectObject, Element, EmNode,
|
|
884
|
+
export type { Align, AngularNode, Audio, Background, BackgroundObject, BackgroundSize, BorderStyle, BoxShadow, BoxSizing, CmykColor, CmykaColor, Color, ColorFill, ColorFillObject, ColorStop, ColorStopNode, DefaultRadialNode, Direction, DirectionalNode, Display, Document, Effect, EffectObject, Element, EmNode, EventListenerOptions, EventListenerValue, ExtentKeywordNode, Fill, FillObject, FillRule, FlatDocument, FlatElement, FlatTextContent, FlexDirection, FlexWrap, FontKerning, FontStyle, FontWeight, Foreground, ForegroundObject, FragmentObject, FullStyle, GradientFill, GradientFillObject, GradientNode, HeadEnd, Hex8Color, HexNode, HighlightColormap, HighlightImage, HighlightLine, HighlightReferImage, HighlightSize, HighlightThickness, HslColor, HslaColor, HsvColor, HsvaColor, HwbColor, HwbaColor, IdGenerator, ImageFill, ImageFillCropRect, ImageFillObject, ImageFillStretchRect, ImageFillTile, InnerShadow, InnerShadowObject, Justify, LabColor, LabaColor, LchColor, LchaColor, LineCap, LineEndSize, LineEndType, LineJoin, LinearGradient, LinearGradientNode, LinearGradientWithType, ListStyleColormap, ListStyleImage, ListStylePosition, ListStyleSize, ListStyleType, LiteralNode, Meta, Node, None, NormalizedAudio, NormalizedBackground, NormalizedBaseBackground, NormalizedBaseForeground, NormalizedBaseOuterShadow, NormalizedBaseOutline, NormalizedColor, NormalizedColorFill, NormalizedDocument, NormalizedEffect, NormalizedElement, NormalizedElementStyle, NormalizedFill, NormalizedFlatDocument, NormalizedFlatElement, NormalizedForeground, NormalizedFragment, NormalizedGradientFill, NormalizedHighlight, NormalizedHighlightStyle, NormalizedImageFill, NormalizedInnerShadow, NormalizedLayoutStyle, NormalizedListStyle, NormalizedListStyleStyle, NormalizedOuterShadow, NormalizedOutline, NormalizedParagraph, NormalizedPresetFill, NormalizedShadow, NormalizedShadowStyle, NormalizedShape, NormalizedSoftEdge, NormalizedStyle, NormalizedText, NormalizedTextContent, NormalizedTextDrawStyle, NormalizedTextInlineStyle, NormalizedTextLineStyle, NormalizedTextStyle, NormalizedTransformStyle, NormalizedVideo, ObjectColor, ObservableEvents, OuterShadow, OuterShadowObject, Outline, OutlineObject, OutlineStyle, Overflow, ParagraphObject, PercentNode, PointerEvents, Position, PositionKeywordNode, PositionNode, PresetFill, PresetFillObject, PropertyAccessor, PropertyDeclaration, PxNode, RadialGradient, RadialGradientNode, RadialGradientWithType, ReactivableEvents, RepeatingLinearGradientNode, RepeatingRadialGradientNode, RgbColor, RgbNode, RgbaColor, RgbaNode, SVGPathData, Shadow, ShadowObject, Shape, ShapeNode, ShapePath, ShapePathStyle, SoftEdge, StrokeLinecap, StrokeLinejoin, Style, StyleObject, StyleUnit, TailEnd, Text, TextAlign, TextContent, TextDecoration, TextObject, TextOrientation, TextTransform, TextWrap, Uint32Color, VerticalAlign, Video, Visibility, WithNone, WithStyleNone, WritingMode, XyzColor, XyzaColor };
|
package/dist/index.d.mts
CHANGED
|
@@ -810,12 +810,12 @@ type EventListenerValue<T extends any[] = any[]> = (...args: T) => void;
|
|
|
810
810
|
type EventListenerOptions = boolean | {
|
|
811
811
|
once?: boolean;
|
|
812
812
|
};
|
|
813
|
-
interface EventListener<T extends any[] = any[]> {
|
|
813
|
+
interface EventListener$1<T extends any[] = any[]> {
|
|
814
814
|
value: EventListenerValue<T>;
|
|
815
815
|
options?: EventListenerOptions;
|
|
816
816
|
}
|
|
817
817
|
declare class EventEmitter<T extends Record<string, any> = Record<string, any>> {
|
|
818
|
-
eventListeners: Map<keyof T, EventListener<any[]> | EventListener<any[]>[]>;
|
|
818
|
+
eventListeners: Map<keyof T, EventListener$1<any[]> | EventListener$1<any[]>[]>;
|
|
819
819
|
addEventListener<K extends keyof T>(event: K, listener: EventListenerValue<T[K]>, options?: EventListenerOptions): this;
|
|
820
820
|
removeEventListener<K extends keyof T>(event: K, listener: EventListenerValue<T[K]>, options?: EventListenerOptions): this;
|
|
821
821
|
removeAllListeners(): this;
|
|
@@ -838,9 +838,11 @@ declare function setNestedValue(obj: any, path: (string | number)[], value: any)
|
|
|
838
838
|
declare function getObjectValueByPath(obj: any, path: string, fallback?: any): any;
|
|
839
839
|
declare function setObjectValueByPath(obj: any, path: string, value: any): void;
|
|
840
840
|
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
841
|
+
type EventListener = (...args: any[]) => void;
|
|
842
|
+
interface ObservableEvents {
|
|
843
|
+
[event: string]: EventListener;
|
|
844
|
+
}
|
|
845
|
+
declare class Observable<T extends ObservableEvents = ObservableEvents> {
|
|
844
846
|
_observers: Map<string, Set<any>>;
|
|
845
847
|
on<K extends keyof T & string>(event: K, listener: T[K]): this;
|
|
846
848
|
once<K extends keyof T & string>(event: K, listener: T[K]): this;
|
|
@@ -858,10 +860,16 @@ declare class RawWeakMap<K extends WeakKey = WeakKey, V = any> {
|
|
|
858
860
|
set(key: K, value: V): this;
|
|
859
861
|
}
|
|
860
862
|
|
|
861
|
-
interface ReactivableEvents {
|
|
863
|
+
interface ReactivableEvents extends ObservableEvents {
|
|
862
864
|
updateProperty: (key: string, newValue: any, oldValue: any) => void;
|
|
863
865
|
}
|
|
864
|
-
|
|
866
|
+
interface Reactivable {
|
|
867
|
+
on: <K extends keyof ReactivableEvents & string>(event: K, listener: ReactivableEvents[K]) => this;
|
|
868
|
+
once: <K extends keyof ReactivableEvents & string>(event: K, listener: ReactivableEvents[K]) => this;
|
|
869
|
+
off: <K extends keyof ReactivableEvents & string>(event: K, listener: ReactivableEvents[K]) => this;
|
|
870
|
+
emit: <K extends keyof ReactivableEvents & string>(event: K, ...args: Parameters<ReactivableEvents[K]>) => this;
|
|
871
|
+
}
|
|
872
|
+
declare class Reactivable extends Observable implements PropertyAccessor {
|
|
865
873
|
protected _propertyAccessor?: PropertyAccessor;
|
|
866
874
|
protected _properties: Map<string, unknown>;
|
|
867
875
|
getProperty(key: string, defaultValue?: any): any;
|
|
@@ -873,4 +881,4 @@ declare class Reactivable extends Observable<ReactivableEvents> implements Prope
|
|
|
873
881
|
}
|
|
874
882
|
|
|
875
883
|
export { EventEmitter, Observable, RawWeakMap, Reactivable, clearUndef, defaultColor, defineProperty, flatDocumentToDocument, getDeclarations, getDefaultElementStyle, getDefaultHighlightStyle, getDefaultInnerShadow, getDefaultLayoutStyle, getDefaultListStyleStyle, getDefaultOuterShadow, getDefaultShadowStyle, getDefaultStyle, getDefaultTextInlineStyle, getDefaultTextLineStyle, getDefaultTextStyle, getDefaultTransformStyle, getNestedValue, getObjectValueByPath, getPropertyDescriptor, getPropertyInternalKey, hasCRLF, idGenerator, isCRLF, isColor, isColorFill, isColorFillObject, isEqualObject, isFragmentObject, isGradient, isGradientFill, isGradientFillObject, isImageFill, isImageFillObject, isNone, isParagraphObject, isPresetFill, isPresetFillObject, nanoid, normalizeAudio, normalizeBackground, normalizeCRLF, normalizeColor, normalizeColorFill, normalizeDocument, normalizeEffect, normalizeElement, normalizeFill, normalizeFlatDocument, normalizeForeground, normalizeGradient, normalizeGradientFill, normalizeImageFill, normalizeInnerShadow, normalizeOuterShadow, normalizeOutline, normalizePresetFill, normalizeShadow, normalizeShape, normalizeSoftEdge, normalizeStyle, normalizeText, normalizeTextContent, normalizeVideo, parseColor, parseGradient, pick, property, property2, round, setNestedValue, setObjectValueByPath, stringifyGradient, textContentToString };
|
|
876
|
-
export type { Align, AngularNode, Audio, Background, BackgroundObject, BackgroundSize, BorderStyle, BoxShadow, BoxSizing, CmykColor, CmykaColor, Color, ColorFill, ColorFillObject, ColorStop, ColorStopNode, DefaultRadialNode, Direction, DirectionalNode, Display, Document, Effect, EffectObject, Element, EmNode,
|
|
884
|
+
export type { Align, AngularNode, Audio, Background, BackgroundObject, BackgroundSize, BorderStyle, BoxShadow, BoxSizing, CmykColor, CmykaColor, Color, ColorFill, ColorFillObject, ColorStop, ColorStopNode, DefaultRadialNode, Direction, DirectionalNode, Display, Document, Effect, EffectObject, Element, EmNode, EventListenerOptions, EventListenerValue, ExtentKeywordNode, Fill, FillObject, FillRule, FlatDocument, FlatElement, FlatTextContent, FlexDirection, FlexWrap, FontKerning, FontStyle, FontWeight, Foreground, ForegroundObject, FragmentObject, FullStyle, GradientFill, GradientFillObject, GradientNode, HeadEnd, Hex8Color, HexNode, HighlightColormap, HighlightImage, HighlightLine, HighlightReferImage, HighlightSize, HighlightThickness, HslColor, HslaColor, HsvColor, HsvaColor, HwbColor, HwbaColor, IdGenerator, ImageFill, ImageFillCropRect, ImageFillObject, ImageFillStretchRect, ImageFillTile, InnerShadow, InnerShadowObject, Justify, LabColor, LabaColor, LchColor, LchaColor, LineCap, LineEndSize, LineEndType, LineJoin, LinearGradient, LinearGradientNode, LinearGradientWithType, ListStyleColormap, ListStyleImage, ListStylePosition, ListStyleSize, ListStyleType, LiteralNode, Meta, Node, None, NormalizedAudio, NormalizedBackground, NormalizedBaseBackground, NormalizedBaseForeground, NormalizedBaseOuterShadow, NormalizedBaseOutline, NormalizedColor, NormalizedColorFill, NormalizedDocument, NormalizedEffect, NormalizedElement, NormalizedElementStyle, NormalizedFill, NormalizedFlatDocument, NormalizedFlatElement, NormalizedForeground, NormalizedFragment, NormalizedGradientFill, NormalizedHighlight, NormalizedHighlightStyle, NormalizedImageFill, NormalizedInnerShadow, NormalizedLayoutStyle, NormalizedListStyle, NormalizedListStyleStyle, NormalizedOuterShadow, NormalizedOutline, NormalizedParagraph, NormalizedPresetFill, NormalizedShadow, NormalizedShadowStyle, NormalizedShape, NormalizedSoftEdge, NormalizedStyle, NormalizedText, NormalizedTextContent, NormalizedTextDrawStyle, NormalizedTextInlineStyle, NormalizedTextLineStyle, NormalizedTextStyle, NormalizedTransformStyle, NormalizedVideo, ObjectColor, ObservableEvents, OuterShadow, OuterShadowObject, Outline, OutlineObject, OutlineStyle, Overflow, ParagraphObject, PercentNode, PointerEvents, Position, PositionKeywordNode, PositionNode, PresetFill, PresetFillObject, PropertyAccessor, PropertyDeclaration, PxNode, RadialGradient, RadialGradientNode, RadialGradientWithType, ReactivableEvents, RepeatingLinearGradientNode, RepeatingRadialGradientNode, RgbColor, RgbNode, RgbaColor, RgbaNode, SVGPathData, Shadow, ShadowObject, Shape, ShapeNode, ShapePath, ShapePathStyle, SoftEdge, StrokeLinecap, StrokeLinejoin, Style, StyleObject, StyleUnit, TailEnd, Text, TextAlign, TextContent, TextDecoration, TextObject, TextOrientation, TextTransform, TextWrap, Uint32Color, VerticalAlign, Video, Visibility, WithNone, WithStyleNone, WritingMode, XyzColor, XyzaColor };
|
package/dist/index.d.ts
CHANGED
|
@@ -810,12 +810,12 @@ type EventListenerValue<T extends any[] = any[]> = (...args: T) => void;
|
|
|
810
810
|
type EventListenerOptions = boolean | {
|
|
811
811
|
once?: boolean;
|
|
812
812
|
};
|
|
813
|
-
interface EventListener<T extends any[] = any[]> {
|
|
813
|
+
interface EventListener$1<T extends any[] = any[]> {
|
|
814
814
|
value: EventListenerValue<T>;
|
|
815
815
|
options?: EventListenerOptions;
|
|
816
816
|
}
|
|
817
817
|
declare class EventEmitter<T extends Record<string, any> = Record<string, any>> {
|
|
818
|
-
eventListeners: Map<keyof T, EventListener<any[]> | EventListener<any[]>[]>;
|
|
818
|
+
eventListeners: Map<keyof T, EventListener$1<any[]> | EventListener$1<any[]>[]>;
|
|
819
819
|
addEventListener<K extends keyof T>(event: K, listener: EventListenerValue<T[K]>, options?: EventListenerOptions): this;
|
|
820
820
|
removeEventListener<K extends keyof T>(event: K, listener: EventListenerValue<T[K]>, options?: EventListenerOptions): this;
|
|
821
821
|
removeAllListeners(): this;
|
|
@@ -838,9 +838,11 @@ declare function setNestedValue(obj: any, path: (string | number)[], value: any)
|
|
|
838
838
|
declare function getObjectValueByPath(obj: any, path: string, fallback?: any): any;
|
|
839
839
|
declare function setObjectValueByPath(obj: any, path: string, value: any): void;
|
|
840
840
|
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
841
|
+
type EventListener = (...args: any[]) => void;
|
|
842
|
+
interface ObservableEvents {
|
|
843
|
+
[event: string]: EventListener;
|
|
844
|
+
}
|
|
845
|
+
declare class Observable<T extends ObservableEvents = ObservableEvents> {
|
|
844
846
|
_observers: Map<string, Set<any>>;
|
|
845
847
|
on<K extends keyof T & string>(event: K, listener: T[K]): this;
|
|
846
848
|
once<K extends keyof T & string>(event: K, listener: T[K]): this;
|
|
@@ -858,10 +860,16 @@ declare class RawWeakMap<K extends WeakKey = WeakKey, V = any> {
|
|
|
858
860
|
set(key: K, value: V): this;
|
|
859
861
|
}
|
|
860
862
|
|
|
861
|
-
interface ReactivableEvents {
|
|
863
|
+
interface ReactivableEvents extends ObservableEvents {
|
|
862
864
|
updateProperty: (key: string, newValue: any, oldValue: any) => void;
|
|
863
865
|
}
|
|
864
|
-
|
|
866
|
+
interface Reactivable {
|
|
867
|
+
on: <K extends keyof ReactivableEvents & string>(event: K, listener: ReactivableEvents[K]) => this;
|
|
868
|
+
once: <K extends keyof ReactivableEvents & string>(event: K, listener: ReactivableEvents[K]) => this;
|
|
869
|
+
off: <K extends keyof ReactivableEvents & string>(event: K, listener: ReactivableEvents[K]) => this;
|
|
870
|
+
emit: <K extends keyof ReactivableEvents & string>(event: K, ...args: Parameters<ReactivableEvents[K]>) => this;
|
|
871
|
+
}
|
|
872
|
+
declare class Reactivable extends Observable implements PropertyAccessor {
|
|
865
873
|
protected _propertyAccessor?: PropertyAccessor;
|
|
866
874
|
protected _properties: Map<string, unknown>;
|
|
867
875
|
getProperty(key: string, defaultValue?: any): any;
|
|
@@ -873,4 +881,4 @@ declare class Reactivable extends Observable<ReactivableEvents> implements Prope
|
|
|
873
881
|
}
|
|
874
882
|
|
|
875
883
|
export { EventEmitter, Observable, RawWeakMap, Reactivable, clearUndef, defaultColor, defineProperty, flatDocumentToDocument, getDeclarations, getDefaultElementStyle, getDefaultHighlightStyle, getDefaultInnerShadow, getDefaultLayoutStyle, getDefaultListStyleStyle, getDefaultOuterShadow, getDefaultShadowStyle, getDefaultStyle, getDefaultTextInlineStyle, getDefaultTextLineStyle, getDefaultTextStyle, getDefaultTransformStyle, getNestedValue, getObjectValueByPath, getPropertyDescriptor, getPropertyInternalKey, hasCRLF, idGenerator, isCRLF, isColor, isColorFill, isColorFillObject, isEqualObject, isFragmentObject, isGradient, isGradientFill, isGradientFillObject, isImageFill, isImageFillObject, isNone, isParagraphObject, isPresetFill, isPresetFillObject, nanoid, normalizeAudio, normalizeBackground, normalizeCRLF, normalizeColor, normalizeColorFill, normalizeDocument, normalizeEffect, normalizeElement, normalizeFill, normalizeFlatDocument, normalizeForeground, normalizeGradient, normalizeGradientFill, normalizeImageFill, normalizeInnerShadow, normalizeOuterShadow, normalizeOutline, normalizePresetFill, normalizeShadow, normalizeShape, normalizeSoftEdge, normalizeStyle, normalizeText, normalizeTextContent, normalizeVideo, parseColor, parseGradient, pick, property, property2, round, setNestedValue, setObjectValueByPath, stringifyGradient, textContentToString };
|
|
876
|
-
export type { Align, AngularNode, Audio, Background, BackgroundObject, BackgroundSize, BorderStyle, BoxShadow, BoxSizing, CmykColor, CmykaColor, Color, ColorFill, ColorFillObject, ColorStop, ColorStopNode, DefaultRadialNode, Direction, DirectionalNode, Display, Document, Effect, EffectObject, Element, EmNode,
|
|
884
|
+
export type { Align, AngularNode, Audio, Background, BackgroundObject, BackgroundSize, BorderStyle, BoxShadow, BoxSizing, CmykColor, CmykaColor, Color, ColorFill, ColorFillObject, ColorStop, ColorStopNode, DefaultRadialNode, Direction, DirectionalNode, Display, Document, Effect, EffectObject, Element, EmNode, EventListenerOptions, EventListenerValue, ExtentKeywordNode, Fill, FillObject, FillRule, FlatDocument, FlatElement, FlatTextContent, FlexDirection, FlexWrap, FontKerning, FontStyle, FontWeight, Foreground, ForegroundObject, FragmentObject, FullStyle, GradientFill, GradientFillObject, GradientNode, HeadEnd, Hex8Color, HexNode, HighlightColormap, HighlightImage, HighlightLine, HighlightReferImage, HighlightSize, HighlightThickness, HslColor, HslaColor, HsvColor, HsvaColor, HwbColor, HwbaColor, IdGenerator, ImageFill, ImageFillCropRect, ImageFillObject, ImageFillStretchRect, ImageFillTile, InnerShadow, InnerShadowObject, Justify, LabColor, LabaColor, LchColor, LchaColor, LineCap, LineEndSize, LineEndType, LineJoin, LinearGradient, LinearGradientNode, LinearGradientWithType, ListStyleColormap, ListStyleImage, ListStylePosition, ListStyleSize, ListStyleType, LiteralNode, Meta, Node, None, NormalizedAudio, NormalizedBackground, NormalizedBaseBackground, NormalizedBaseForeground, NormalizedBaseOuterShadow, NormalizedBaseOutline, NormalizedColor, NormalizedColorFill, NormalizedDocument, NormalizedEffect, NormalizedElement, NormalizedElementStyle, NormalizedFill, NormalizedFlatDocument, NormalizedFlatElement, NormalizedForeground, NormalizedFragment, NormalizedGradientFill, NormalizedHighlight, NormalizedHighlightStyle, NormalizedImageFill, NormalizedInnerShadow, NormalizedLayoutStyle, NormalizedListStyle, NormalizedListStyleStyle, NormalizedOuterShadow, NormalizedOutline, NormalizedParagraph, NormalizedPresetFill, NormalizedShadow, NormalizedShadowStyle, NormalizedShape, NormalizedSoftEdge, NormalizedStyle, NormalizedText, NormalizedTextContent, NormalizedTextDrawStyle, NormalizedTextInlineStyle, NormalizedTextLineStyle, NormalizedTextStyle, NormalizedTransformStyle, NormalizedVideo, ObjectColor, ObservableEvents, OuterShadow, OuterShadowObject, Outline, OutlineObject, OutlineStyle, Overflow, ParagraphObject, PercentNode, PointerEvents, Position, PositionKeywordNode, PositionNode, PresetFill, PresetFillObject, PropertyAccessor, PropertyDeclaration, PxNode, RadialGradient, RadialGradientNode, RadialGradientWithType, ReactivableEvents, RepeatingLinearGradientNode, RepeatingRadialGradientNode, RgbColor, RgbNode, RgbaColor, RgbaNode, SVGPathData, Shadow, ShadowObject, Shape, ShapeNode, ShapePath, ShapePathStyle, SoftEdge, StrokeLinecap, StrokeLinejoin, Style, StyleObject, StyleUnit, TailEnd, Text, TextAlign, TextContent, TextDecoration, TextObject, TextOrientation, TextTransform, TextWrap, Uint32Color, VerticalAlign, Video, Visibility, WithNone, WithStyleNone, WritingMode, XyzColor, XyzaColor };
|