UNPKG

checksync

Version:

A tool that allows code to be annotated across different files to ensure they remain in sync.

15 lines (14 loc) 608 B
/** * Create a sync tag start string. * * This does not include indentation. Callers are responsible for adding any * necessary indentation. * * @param markerID The ID of the marker. * @param commentStart The comment start string. * @param commentEnd The comment end string. * @param checksum The checksum. * @param target The target the sync tag points to. * @returns The formatted sync tag start string, without indentation. */ export declare const formatSyncTagStart: (markerID: string, commentStart: string, commentEnd: string | undefined | null, checksum: string, target: string) => string;