UNPKG

checksync

Version:

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

18 lines (17 loc) 715 B
export declare enum ErrorCode { couldNotParse = "could-not-parse", malformedStartTag = "malformed-start-tag", malformedEndTag = "malformed-end-tag", endTagWithoutStartTag = "end-tag-without-start-tag", emptyMarker = "empty-marker", duplicateMarker = "duplicate-marker", startTagWithoutEndTag = "start-tag-witout-end-tag", mismatchedChecksum = "mismatched-checksum", duplicateTarget = "duplicate-target", startTagAfterContent = "start-tag-after-content", fileDoesNotExist = "file-does-not-exist", noReturnTag = "no-return-tag", selfTargeting = "self-targeting", differentCommentSyntax = "different-comment-syntax", pendingMigration = "pending-migration" }