web-component-wrapper 0.0.336 → 0.0.337
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/type.d.ts +2 -2
package/package.json
CHANGED
package/type.d.ts
CHANGED
@@ -12,8 +12,8 @@ export declare type CompiledDomNodeTemplateItem = {
|
|
12
12
|
export declare type CompiledDomNodeTemplate<NodeType = Node> = Map<NodeType, CompiledDomNodeTemplateItem>;
|
13
13
|
export declare type EventCallbackMapping = Map<string, () => void>;
|
14
14
|
export declare type EventMapping<ExternalPropertiesType = Mapping<unknown>, InternalPropertiesType = Mapping<unknown>> = [ExternalPropertiesType, InternalPropertiesType] | ExternalPropertiesType;
|
15
|
-
export declare type EventMapper = (..._parameter: Array<unknown>) => EventMapping
|
16
|
-
export declare type EventToPropertyMapping = Mapping<true | EventMapper
|
15
|
+
export declare type EventMapper<E = Mapping<unknown>, I = Mapping<unknown>> = (..._parameter: Array<unknown>) => EventMapping<E, I>;
|
16
|
+
export declare type EventToPropertyMapping<E = Mapping<unknown>, I = Mapping<unknown>> = Mapping<true | EventMapper<E, I>>;
|
17
17
|
export declare type AttributesReflectionConfiguration = Array<string> | Map<string, string | ValueOf<typeof PropertyTypes>> | string | Mapping<ValueOf<typeof PropertyTypes> | string>;
|
18
18
|
export declare type ScopeDeclaration = Array<string> | Mapping<unknown>;
|
19
19
|
export declare type PreCompiledItem = {
|