gunsmith-common 2.1.11
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/bundles/gunsmith-common.umd.js +2093 -0
- package/bundles/gunsmith-common.umd.js.map +1 -0
- package/esm2015/gunsmith-common.js +5 -0
- package/esm2015/notification/fade-out.animation.js +10 -0
- package/esm2015/notification/index.js +4 -0
- package/esm2015/notification/notification-bar/notification-bar.component.js +48 -0
- package/esm2015/notification/notification-message.js +3 -0
- package/esm2015/notification/notification-type.enum.js +6 -0
- package/esm2015/notification/notification.module.js +26 -0
- package/esm2015/notification/notification.service.js +21 -0
- package/esm2015/public_api.js +12 -0
- package/esm2015/shared/directives/disable-control.directive.js +24 -0
- package/esm2015/shared/directives/index.js +3 -0
- package/esm2015/shared/directives/refinish-details-validators.js +45 -0
- package/esm2015/shared/pipes/enum.pipe.js +16 -0
- package/esm2015/shared/pipes/file-name.pipe.js +16 -0
- package/esm2015/shared/pipes/frame-material.pipe.js +24 -0
- package/esm2015/shared/pipes/index.js +6 -0
- package/esm2015/shared/pipes/new-line.pipe.js +16 -0
- package/esm2015/shared/pipes/phone.pipe.js +19 -0
- package/esm2015/shared/services/coating.service.js +63 -0
- package/esm2015/shared/services/configuration.service.js +29 -0
- package/esm2015/shared/services/cosmetic-milling.service.js +42 -0
- package/esm2015/shared/services/customer.service.js +47 -0
- package/esm2015/shared/services/dealer.service.js +45 -0
- package/esm2015/shared/services/file-upload.service.js +39 -0
- package/esm2015/shared/services/firearm-series.service.js +45 -0
- package/esm2015/shared/services/firearm.service.js +48 -0
- package/esm2015/shared/services/gun-part.service.js +52 -0
- package/esm2015/shared/services/index.js +25 -0
- package/esm2015/shared/services/inventory.service.js +32 -0
- package/esm2015/shared/services/material.service.js +30 -0
- package/esm2015/shared/services/milling-type.service.js +44 -0
- package/esm2015/shared/services/optic.service.js +42 -0
- package/esm2015/shared/services/product.service.js +29 -0
- package/esm2015/shared/services/purchase-order.service.js +87 -0
- package/esm2015/shared/services/state.service.js +26 -0
- package/esm2015/shared/services/totals.service.js +50 -0
- package/esm2015/shared/services/user.service.js +26 -0
- package/esm2015/shared/services/vendor.service.js +42 -0
- package/esm2015/shared/services/waitlist-customer.service.js +38 -0
- package/esm2015/shared/services/waitlist-project.service.js +38 -0
- package/esm2015/shared/services/waitlist.service.js +83 -0
- package/esm2015/shared/services/work-holiday.service.js +32 -0
- package/esm2015/shared/services/work-order.service.js +150 -0
- package/esm2015/shared/shared.module.js +46 -0
- package/esm2015/shared/types/bundle-item.js +6 -0
- package/esm2015/shared/types/change-order-status.js +9 -0
- package/esm2015/shared/types/coating-value.js +6 -0
- package/esm2015/shared/types/coating.js +8 -0
- package/esm2015/shared/types/configuration.js +3 -0
- package/esm2015/shared/types/cosmetic-milling.js +6 -0
- package/esm2015/shared/types/customer.js +6 -0
- package/esm2015/shared/types/dealer-contact.js +3 -0
- package/esm2015/shared/types/dealer-coupon.js +3 -0
- package/esm2015/shared/types/dealer.js +7 -0
- package/esm2015/shared/types/filter-options.js +9 -0
- package/esm2015/shared/types/firearm-series-optic.js +9 -0
- package/esm2015/shared/types/firearm-series.js +8 -0
- package/esm2015/shared/types/firearm.js +6 -0
- package/esm2015/shared/types/frame-material.js +8 -0
- package/esm2015/shared/types/gun-caliber.js +7 -0
- package/esm2015/shared/types/gun-part.js +10 -0
- package/esm2015/shared/types/index.js +56 -0
- package/esm2015/shared/types/inventory-item.js +6 -0
- package/esm2015/shared/types/j-file.js +3 -0
- package/esm2015/shared/types/material.js +6 -0
- package/esm2015/shared/types/milling-detail.js +7 -0
- package/esm2015/shared/types/milling-item.js +3 -0
- package/esm2015/shared/types/milling-type.js +6 -0
- package/esm2015/shared/types/mount-type.js +6 -0
- package/esm2015/shared/types/optic-status.js +7 -0
- package/esm2015/shared/types/optic.js +6 -0
- package/esm2015/shared/types/product.js +3 -0
- package/esm2015/shared/types/project-type.js +7 -0
- package/esm2015/shared/types/purchase-order-refinish-item.js +3 -0
- package/esm2015/shared/types/purchase-order-status.js +8 -0
- package/esm2015/shared/types/purchase-order.js +9 -0
- package/esm2015/shared/types/rear-sight-position.js +6 -0
- package/esm2015/shared/types/refinish-detail.js +3 -0
- package/esm2015/shared/types/report-milling-item.js +3 -0
- package/esm2015/shared/types/report-refinish-item.js +3 -0
- package/esm2015/shared/types/sight-type.js +6 -0
- package/esm2015/shared/types/state.js +3 -0
- package/esm2015/shared/types/total-item.js +3 -0
- package/esm2015/shared/types/total.js +3 -0
- package/esm2015/shared/types/vendor-contact.js +3 -0
- package/esm2015/shared/types/vendor.js +7 -0
- package/esm2015/shared/types/waitlist-action.js +9 -0
- package/esm2015/shared/types/waitlist-gun.js +12 -0
- package/esm2015/shared/types/waitlist-history.js +3 -0
- package/esm2015/shared/types/waitlist-item.js +12 -0
- package/esm2015/shared/types/waitlist-status.js +15 -0
- package/esm2015/shared/types/work-change-order.js +3 -0
- package/esm2015/shared/types/work-holiday.js +3 -0
- package/esm2015/shared/types/work-order-action.js +7 -0
- package/esm2015/shared/types/work-order-history.js +3 -0
- package/esm2015/shared/types/work-order-refinish-item.js +3 -0
- package/esm2015/shared/types/work-order-status.js +14 -0
- package/esm2015/shared/types/work-order-type.js +8 -0
- package/esm2015/shared/types/work-order.js +18 -0
- package/esm2015/shared/utils/coating-helpers.js +22 -0
- package/esm2015/shared/utils/enum-object.js +10 -0
- package/esm2015/shared/utils/finish-date-calculator.js +30 -0
- package/esm2015/shared/utils/index.js +5 -0
- package/esm2015/shared/utils/invalid-form-control-toucher.js +7 -0
- package/fesm2015/gunsmith-common.js +1767 -0
- package/fesm2015/gunsmith-common.js.map +1 -0
- package/gunsmith-common.d.ts +5 -0
- package/notification/fade-out.animation.d.ts +2 -0
- package/notification/index.d.ts +3 -0
- package/notification/notification-bar/notification-bar.component.d.ts +18 -0
- package/notification/notification-message.d.ts +6 -0
- package/notification/notification-type.enum.d.ts +4 -0
- package/notification/notification.module.d.ts +8 -0
- package/notification/notification.service.d.ts +12 -0
- package/package.json +24 -0
- package/public_api.d.ts +8 -0
- package/shared/directives/disable-control.directive.d.ts +9 -0
- package/shared/directives/index.d.ts +2 -0
- package/shared/directives/refinish-details-validators.d.ts +4 -0
- package/shared/pipes/enum.pipe.d.ts +7 -0
- package/shared/pipes/file-name.pipe.d.ts +7 -0
- package/shared/pipes/frame-material.pipe.d.ts +11 -0
- package/shared/pipes/index.d.ts +5 -0
- package/shared/pipes/new-line.pipe.d.ts +7 -0
- package/shared/pipes/phone.pipe.d.ts +7 -0
- package/shared/services/coating.service.d.ts +22 -0
- package/shared/services/configuration.service.d.ts +14 -0
- package/shared/services/cosmetic-milling.service.d.ts +17 -0
- package/shared/services/customer.service.d.ts +17 -0
- package/shared/services/dealer.service.d.ts +19 -0
- package/shared/services/file-upload.service.d.ts +14 -0
- package/shared/services/firearm-series.service.d.ts +18 -0
- package/shared/services/firearm.service.d.ts +20 -0
- package/shared/services/gun-part.service.d.ts +18 -0
- package/shared/services/index.d.ts +24 -0
- package/shared/services/inventory.service.d.ts +13 -0
- package/shared/services/material.service.d.ts +13 -0
- package/shared/services/milling-type.service.d.ts +17 -0
- package/shared/services/optic.service.d.ts +17 -0
- package/shared/services/product.service.d.ts +15 -0
- package/shared/services/purchase-order.service.d.ts +27 -0
- package/shared/services/state.service.d.ts +13 -0
- package/shared/services/totals.service.d.ts +15 -0
- package/shared/services/user.service.d.ts +12 -0
- package/shared/services/vendor.service.d.ts +17 -0
- package/shared/services/waitlist-customer.service.d.ts +15 -0
- package/shared/services/waitlist-project.service.d.ts +17 -0
- package/shared/services/waitlist.service.d.ts +24 -0
- package/shared/services/work-holiday.service.d.ts +15 -0
- package/shared/services/work-order.service.d.ts +41 -0
- package/shared/shared.module.d.ts +12 -0
- package/shared/types/bundle-item.d.ts +11 -0
- package/shared/types/change-order-status.d.ts +7 -0
- package/shared/types/coating-value.d.ts +6 -0
- package/shared/types/coating.d.ts +11 -0
- package/shared/types/configuration.d.ts +11 -0
- package/shared/types/cosmetic-milling.d.ts +6 -0
- package/shared/types/customer.d.ts +14 -0
- package/shared/types/dealer-contact.d.ts +9 -0
- package/shared/types/dealer-coupon.d.ts +5 -0
- package/shared/types/dealer.d.ts +24 -0
- package/shared/types/filter-options.d.ts +6 -0
- package/shared/types/firearm-series-optic.d.ts +12 -0
- package/shared/types/firearm-series.d.ts +9 -0
- package/shared/types/firearm.d.ts +10 -0
- package/shared/types/frame-material.d.ts +6 -0
- package/shared/types/gun-caliber.d.ts +5 -0
- package/shared/types/gun-part.d.ts +11 -0
- package/shared/types/index.d.ts +55 -0
- package/shared/types/inventory-item.d.ts +8 -0
- package/shared/types/j-file.d.ts +5 -0
- package/shared/types/material.d.ts +6 -0
- package/shared/types/milling-detail.d.ts +17 -0
- package/shared/types/milling-item.d.ts +8 -0
- package/shared/types/milling-type.d.ts +8 -0
- package/shared/types/mount-type.d.ts +4 -0
- package/shared/types/optic-status.d.ts +5 -0
- package/shared/types/optic.d.ts +6 -0
- package/shared/types/product.d.ts +7 -0
- package/shared/types/project-type.d.ts +5 -0
- package/shared/types/purchase-order-refinish-item.d.ts +16 -0
- package/shared/types/purchase-order-status.d.ts +6 -0
- package/shared/types/purchase-order.d.ts +11 -0
- package/shared/types/rear-sight-position.d.ts +4 -0
- package/shared/types/refinish-detail.d.ts +11 -0
- package/shared/types/report-milling-item.d.ts +16 -0
- package/shared/types/report-refinish-item.d.ts +16 -0
- package/shared/types/sight-type.d.ts +4 -0
- package/shared/types/state.d.ts +4 -0
- package/shared/types/total-item.d.ts +4 -0
- package/shared/types/total.d.ts +5 -0
- package/shared/types/vendor-contact.d.ts +9 -0
- package/shared/types/vendor.d.ts +20 -0
- package/shared/types/waitlist-action.d.ts +7 -0
- package/shared/types/waitlist-gun.d.ts +22 -0
- package/shared/types/waitlist-history.d.ts +8 -0
- package/shared/types/waitlist-item.d.ts +25 -0
- package/shared/types/waitlist-status.d.ts +13 -0
- package/shared/types/work-change-order.d.ts +10 -0
- package/shared/types/work-holiday.d.ts +4 -0
- package/shared/types/work-order-action.d.ts +5 -0
- package/shared/types/work-order-history.d.ts +8 -0
- package/shared/types/work-order-refinish-item.d.ts +16 -0
- package/shared/types/work-order-status.d.ts +12 -0
- package/shared/types/work-order-type.d.ts +6 -0
- package/shared/types/work-order.d.ts +31 -0
- package/shared/utils/coating-helpers.d.ts +5 -0
- package/shared/utils/enum-object.d.ts +5 -0
- package/shared/utils/finish-date-calculator.d.ts +2 -0
- package/shared/utils/index.d.ts +4 -0
- package/shared/utils/invalid-form-control-toucher.d.ts +2 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SightType } from './sight-type';
|
|
2
|
+
import { RearSightPosition } from './rear-sight-position';
|
|
3
|
+
import { Optic } from './optic';
|
|
4
|
+
import { CosmeticMilling } from './cosmetic-milling';
|
|
5
|
+
import { OpticStatus } from './optic-status';
|
|
6
|
+
export declare class MillingDetail {
|
|
7
|
+
id: number;
|
|
8
|
+
optic: Optic;
|
|
9
|
+
opticStatus: OpticStatus;
|
|
10
|
+
frontSightType: SightType;
|
|
11
|
+
rearSightType: SightType;
|
|
12
|
+
rearSightPosition: RearSightPosition;
|
|
13
|
+
cosmeticMilling: CosmeticMilling;
|
|
14
|
+
barrelCrown: boolean;
|
|
15
|
+
bushingInstallation: boolean;
|
|
16
|
+
timestamp: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Coating } from './coating';
|
|
2
|
+
import { CoatingValue } from './coating-value';
|
|
3
|
+
import { GunPart } from './gun-part';
|
|
4
|
+
export declare class PurchaseOrderRefinishItem {
|
|
5
|
+
id: number;
|
|
6
|
+
gunPart: GunPart;
|
|
7
|
+
quantity: number;
|
|
8
|
+
coating: Coating;
|
|
9
|
+
coatingValue: CoatingValue;
|
|
10
|
+
coatingDescription: string;
|
|
11
|
+
serialNumber: string;
|
|
12
|
+
customerName: string;
|
|
13
|
+
inDate: Date;
|
|
14
|
+
isMillingCompleted: boolean;
|
|
15
|
+
timestamp: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PurchaseOrderRefinishItem } from './purchase-order-refinish-item';
|
|
2
|
+
import { PurchaseOrderStatus } from './purchase-order-status';
|
|
3
|
+
import { Vendor } from './vendor';
|
|
4
|
+
export declare class PurchaseOrder {
|
|
5
|
+
id: number;
|
|
6
|
+
vendor: Vendor;
|
|
7
|
+
date: Date;
|
|
8
|
+
status: PurchaseOrderStatus;
|
|
9
|
+
refinishItems: PurchaseOrderRefinishItem[];
|
|
10
|
+
timestamp: string;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Coating } from './coating';
|
|
2
|
+
import { CoatingValue } from './coating-value';
|
|
3
|
+
import { GunPart } from './gun-part';
|
|
4
|
+
export declare class RefinishDetail {
|
|
5
|
+
id: number;
|
|
6
|
+
gunPart: GunPart;
|
|
7
|
+
coating: Coating;
|
|
8
|
+
coatingValue: CoatingValue;
|
|
9
|
+
coatingDescription: string;
|
|
10
|
+
timestamp: string;
|
|
11
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { MillingType } from './milling-type';
|
|
2
|
+
import { ProjectType } from './project-type';
|
|
3
|
+
import { WorkOrderType } from './work-order-type';
|
|
4
|
+
export declare class ReportMillingItem {
|
|
5
|
+
id: number;
|
|
6
|
+
customerName: string;
|
|
7
|
+
serialNumber: string;
|
|
8
|
+
firearmName: string;
|
|
9
|
+
receivedDate: Date;
|
|
10
|
+
estimatedFinishDate: Date;
|
|
11
|
+
workOrderType: WorkOrderType;
|
|
12
|
+
projectType: ProjectType;
|
|
13
|
+
millingType: MillingType;
|
|
14
|
+
description: string;
|
|
15
|
+
hasRefinish: boolean;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Coating } from "./coating";
|
|
2
|
+
import { CoatingValue } from "./coating-value";
|
|
3
|
+
import { GunPart } from "./gun-part";
|
|
4
|
+
export declare class ReportRefinishItem {
|
|
5
|
+
id: number;
|
|
6
|
+
gunPart: GunPart;
|
|
7
|
+
quantity: number;
|
|
8
|
+
coating: Coating;
|
|
9
|
+
coatingValue: CoatingValue;
|
|
10
|
+
coatingDescription: string;
|
|
11
|
+
serialNumber: string;
|
|
12
|
+
customerName: string;
|
|
13
|
+
vendorName: string;
|
|
14
|
+
outDate: Date;
|
|
15
|
+
timestamp: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { JFile } from "./j-file";
|
|
2
|
+
import { VendorContact } from "./vendor-contact";
|
|
3
|
+
export declare class Vendor {
|
|
4
|
+
constructor();
|
|
5
|
+
id: number;
|
|
6
|
+
name: string;
|
|
7
|
+
address1: string;
|
|
8
|
+
address2: string;
|
|
9
|
+
city: string;
|
|
10
|
+
stateAbbrev: string;
|
|
11
|
+
stateName: string;
|
|
12
|
+
postalCode: string;
|
|
13
|
+
fflDate: Date;
|
|
14
|
+
fflFile: JFile;
|
|
15
|
+
fflFileName: string;
|
|
16
|
+
notes: string;
|
|
17
|
+
contacts: VendorContact[];
|
|
18
|
+
active: boolean;
|
|
19
|
+
timestamp: string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Firearm } from './firearm';
|
|
2
|
+
import { GunCaliber } from "./gun-caliber";
|
|
3
|
+
import { MillingDetail } from './milling-detail';
|
|
4
|
+
import { ProjectType } from './project-type';
|
|
5
|
+
import { RefinishDetail } from './refinish-detail';
|
|
6
|
+
export declare class WaitlistGun {
|
|
7
|
+
id: number;
|
|
8
|
+
firearm: Firearm;
|
|
9
|
+
serialNumber: string;
|
|
10
|
+
caliber: GunCaliber;
|
|
11
|
+
condition: string;
|
|
12
|
+
workDescription: string;
|
|
13
|
+
shipmentInfo: string;
|
|
14
|
+
projectType: ProjectType;
|
|
15
|
+
logo: boolean;
|
|
16
|
+
refinish: boolean;
|
|
17
|
+
milling: boolean;
|
|
18
|
+
specialOrder: boolean;
|
|
19
|
+
refinishDetails: RefinishDetail[];
|
|
20
|
+
millingDetail: MillingDetail;
|
|
21
|
+
timestamp: string;
|
|
22
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { WaitlistStatus } from "./waitlist-status";
|
|
2
|
+
import { WaitlistGun } from "./waitlist-gun";
|
|
3
|
+
import { WaitlistHistory } from "./waitlist-history";
|
|
4
|
+
import { Customer } from "./customer";
|
|
5
|
+
import { WorkOrderType } from './work-order-type';
|
|
6
|
+
export declare class WaitlistItem {
|
|
7
|
+
id: number;
|
|
8
|
+
requestDate: Date;
|
|
9
|
+
lastStatusDate: Date;
|
|
10
|
+
customer: Customer;
|
|
11
|
+
name: string;
|
|
12
|
+
address1: string;
|
|
13
|
+
address2: string;
|
|
14
|
+
city: string;
|
|
15
|
+
stateAbbrev: string;
|
|
16
|
+
stateName: string;
|
|
17
|
+
postalCode: string;
|
|
18
|
+
status: WaitlistStatus;
|
|
19
|
+
phone: string;
|
|
20
|
+
email: string;
|
|
21
|
+
workOrderType: WorkOrderType;
|
|
22
|
+
guns: WaitlistGun[];
|
|
23
|
+
histories: WaitlistHistory[];
|
|
24
|
+
timestamp: string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare enum WaitlistStatus {
|
|
2
|
+
NewRequest = 0,
|
|
3
|
+
ShipmentEmailSent = 1,
|
|
4
|
+
ShipmentEmailReminderSent = 2,
|
|
5
|
+
ShipmentEmailNoResponse = 3,
|
|
6
|
+
WaitingOnShipment = 4,
|
|
7
|
+
WaitingOnShipmentReminderSent = 5,
|
|
8
|
+
WaitingOnShipmentNoResponse = 6,
|
|
9
|
+
InShop = 7,
|
|
10
|
+
Cancelled = 8,
|
|
11
|
+
OnHold = 9,
|
|
12
|
+
Voided = 10
|
|
13
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Coating } from './coating';
|
|
2
|
+
import { CoatingValue } from './coating-value';
|
|
3
|
+
import { GunPart } from './gun-part';
|
|
4
|
+
import { Vendor } from './vendor';
|
|
5
|
+
export declare class WorkOrderRefinishItem {
|
|
6
|
+
id: number;
|
|
7
|
+
gunPart: GunPart;
|
|
8
|
+
quantity: number;
|
|
9
|
+
coating: Coating;
|
|
10
|
+
coatingValue: CoatingValue;
|
|
11
|
+
coatingDescription: string;
|
|
12
|
+
vendor: Vendor;
|
|
13
|
+
outDate: Date;
|
|
14
|
+
inDate: Date;
|
|
15
|
+
timestamp: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { WorkOrderStatus } from "./work-order-status";
|
|
2
|
+
import { WorkOrderHistory } from './work-order-history';
|
|
3
|
+
import { WorkOrderType } from "./work-order-type";
|
|
4
|
+
import { Customer } from "./customer";
|
|
5
|
+
import { Firearm } from './firearm';
|
|
6
|
+
import { GunCaliber } from './gun-caliber';
|
|
7
|
+
import { ProjectType } from './project-type';
|
|
8
|
+
export declare class WorkOrder {
|
|
9
|
+
constructor();
|
|
10
|
+
id: number;
|
|
11
|
+
customer: Customer;
|
|
12
|
+
firearm: Firearm;
|
|
13
|
+
serialNumber: string;
|
|
14
|
+
caliber: GunCaliber;
|
|
15
|
+
receivedDate: Date;
|
|
16
|
+
estimatedFinishDate: Date;
|
|
17
|
+
lastStatusDate: Date;
|
|
18
|
+
workOrderType: WorkOrderType;
|
|
19
|
+
refinish: boolean;
|
|
20
|
+
logo: boolean;
|
|
21
|
+
milling: boolean;
|
|
22
|
+
specialOrder: boolean;
|
|
23
|
+
condition: string;
|
|
24
|
+
workDescription: string;
|
|
25
|
+
shipmentInfo: string;
|
|
26
|
+
projectType: ProjectType;
|
|
27
|
+
status: WorkOrderStatus;
|
|
28
|
+
histories: WorkOrderHistory[];
|
|
29
|
+
notes: string;
|
|
30
|
+
timestamp: string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Coating, CoatingValue, GunPart, Material } from '../types';
|
|
2
|
+
export declare function getCoatings(part: GunPart, coatings: Coating[], material: Material): Coating[];
|
|
3
|
+
export declare function getCoatingValues(coating: Coating): CoatingValue[];
|
|
4
|
+
export declare function hasCoatingValues(coating: Coating): boolean;
|
|
5
|
+
export declare function hasCoatingDescription(coating: Coating): boolean;
|