fix(ini): remove unused ParseOptions.assignment property (#4816)

This commit is contained in:
David Sherret 2024-05-23 12:53:36 -04:00 committed by GitHub
parent c0d75322c7
commit e7c5c6a223
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,8 +22,6 @@ type Formatting = Omit<FormattingOptions, "lineBreak" | "commentChar"> & {
/** Options for parsing INI strings. */
export interface ParseOptions {
/** The character used to assign a value to a key; defaults to '='. */
assignment?: FormattingOptions["assignment"];
/** Provide custom parsing of the value in a key/value pair. */
reviver?: ReviverFunction;
}