@shipengine/connect-order-source-api
Version:
This is the typescript/javascript definitions for the order source api
16 lines (15 loc) • 782 B
TypeScript
import Joi from 'joi';
/** @description The html templates for a given packing slip. */
export declare class PackingSlipTemplate {
/** @description The name that should be associated with this packing slip in the platform */
name: string;
/** @description The html template that should be displayed at the top of the packing slip */
header: string;
/** @description The html template that should be displayed above the items being printed out */
items_header: string;
/** @description The html template that will be rendered for each item */
item: string;
/** @description The html template that should be displayed at the bottom of the packing slip */
footer: string;
}
export declare const PackingSlipTemplateSchema: Joi.ObjectSchema<any>;