/** * Copyright 2026 - present Nazmul Hassan * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ //#region src/string/constants.d.ts /** List of conjunctions, prepositions, auxiliary verbs and articles in lowercase as array of strings */ declare const LOWERCASE: readonly ["and", "but", "or", "nor", "for", "so", "yet", "after", "although", "as", "because", "before", "even", "if", "once", "since", "than", "that", "though", "unless", "until", "when", "whenever", "where", "whereas", "wherever", "whether", "while", "about", "above", "across", "after", "against", "along", "among", "around", "as", "at", "before", "behind", "below", "beneath", "beside", "between", "beyond", "but", "by", "concerning", "considering", "despite", "down", "during", "except", "following", "for", "from", "in", "inside", "into", "like", "minus", "near", "of", "off", "on", "onto", "opposite", "out", "outside", "over", "past", "per", "plus", "regarding", "round", "save", "since", "than", "through", "throughout", "till", "to", "toward", "towards", "under", "underneath", "unlike", "until", "up", "upon", "versus", "via", "with", "within", "without", "a", "an", "the", "am", "are", "be", "been", "being", "can", "could", "do", "does", "did", "had", "has", "have", "is", "may", "might", "must", "shall", "should", "was", "were", "will", "would"]; /** Names of rules for `markdownToText` function */ declare const MD_TO_TEXT_RULES: readonly ["hr", "abbr", "footnoteDef", "refLinkDef", "listLeaders", "gfmHeader", "gfmFencedCode", "blockquote", "atxHeader", "setextHeader", "html", "imageInline", "imageReference", "linkInline", "linkReference", "inlineCode", "footnoteRef", "strikethrough", "emphasisAsterisk", "emphasisUnderscore"]; //#endregion export { MD_TO_TEXT_RULES as n, LOWERCASE as t };