5 lines
214 B
TypeScript
5 lines
214 B
TypeScript
/**
|
|
* Default output path template when no output is specified.
|
|
* Variables: ${SRC_DIR}, ${SRC_NAME}, ${PAGE}, ${FORMAT}
|
|
*/
|
|
export const DEFAULT_OUTPUT_TEMPLATE = "${SRC_DIR}/${SRC_NAME}_${PAGE}.${FORMAT}";
|