@seidor-cloud-produtos/tax-core 0.0.9-beta7 → 0.0.9-beta9
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.
|
@@ -18,9 +18,9 @@ export interface FieldFormat {
|
|
|
18
18
|
fillEntireLength: boolean;
|
|
19
19
|
valueProvider: valueProviderType;
|
|
20
20
|
}
|
|
21
|
-
export declare function Numeric(required?: boolean, fillEntireLength?: boolean, maximumLength?: number): (target: any, propertyKey: string, other?:
|
|
22
|
-
export declare function Decimal(required?: boolean, fillEntireLength?: boolean, maximumLength?: number, maximumDecimalsLength?: number): (target: any, propertyKey: string, other?:
|
|
23
|
-
export declare function Alphanumeric(required?: boolean, fillEntireLength?: boolean, maximumLength?: number): (target: any, propertyKey: string, other?:
|
|
21
|
+
export declare function Numeric(required?: boolean, fillEntireLength?: boolean, maximumLength?: number): (target: any, propertyKey: string, other?: PropertyDecorator | MethodDecorator | undefined) => PropertyDecorator | MethodDecorator | undefined;
|
|
22
|
+
export declare function Decimal(required?: boolean, fillEntireLength?: boolean, maximumLength?: number, maximumDecimalsLength?: number): (target: any, propertyKey: string, other?: PropertyDecorator | MethodDecorator | undefined) => PropertyDecorator | MethodDecorator | undefined;
|
|
23
|
+
export declare function Alphanumeric(required?: boolean, fillEntireLength?: boolean, maximumLength?: number): (target: any, propertyKey: string, other?: PropertyDecorator | MethodDecorator | undefined) => PropertyDecorator | MethodDecorator | undefined;
|
|
24
24
|
export interface KeyComposition {
|
|
25
25
|
fields: KeyFieldDefinition[];
|
|
26
26
|
}
|
|
@@ -28,4 +28,4 @@ export interface KeyFieldDefinition {
|
|
|
28
28
|
fieldName: string;
|
|
29
29
|
valueProvider: valueProviderType;
|
|
30
30
|
}
|
|
31
|
-
export declare function Key(): (target: any, propertyKey: string, other?:
|
|
31
|
+
export declare function Key(): (target: any, propertyKey: string, other?: PropertyDecorator | MethodDecorator | undefined) => PropertyDecorator | MethodDecorator | undefined;
|